// // DressUpShopModel.h // YUMI // // Created by YUMI on 2022/7/28. // #import NS_ASSUME_NONNULL_BEGIN @interface DressUpShopModel : NSObject ///座驾图片 @property (nonatomic, strong) NSString *pic; ///id @property (nonatomic, strong) NSString *dressUpId; /// @property (nonatomic, copy) NSString *dressId; ///座驾名称 @property (nonatomic, strong) NSString *name; ///天数 @property (nonatomic, assign) NSInteger dressDay; ///价格 @property (nonatomic, assign) NSInteger dressPrice; ///装扮类型 @property (nonatomic, assign) NSInteger dressType; ///是否限时 0:限时,1:不限时 @property (nonatomic, assign) NSInteger dressLimitStatus; @end NS_ASSUME_NONNULL_END