30 lines
868 B
Objective-C
30 lines
868 B
Objective-C
//
|
|
// LMCPSpaceDressListModel.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/8/16.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LMCPSpaceDressListModel : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *cp_tx_play_img;
|
|
@property (nonatomic, strong) NSString *js_suo;
|
|
@property (nonatomic, strong) NSString *is_using;
|
|
@property (nonatomic, strong) NSString *head_decorate_img;
|
|
@property (nonatomic, strong) NSString *head_decorate_title;
|
|
@property (nonatomic, strong) NSString *head_decorate_play_img;
|
|
@property (nonatomic, strong) NSString *level;
|
|
@property (nonatomic, strong) NSString *head_decorate_id;
|
|
@property (nonatomic, strong) NSString *cp_tx_id;
|
|
@property (nonatomic, strong) NSString *cp_tx_img;
|
|
@property (nonatomic, strong) NSString *cp_tx_title;
|
|
@property (nonatomic, strong) NSString *udid;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|