Files
peko-ios/YuMi/Modules/YMMine/View/DressUp/Model/DressUpShopModel.h

34 lines
730 B
C
Raw Normal View History

2023-07-06 16:54:13 +08:00
//
2023-07-14 18:50:55 +08:00
// DressUpShopModel.h
2023-07-06 16:54:13 +08:00
// YUMI
//
// Created by YUMI on 2022/7/28.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
2023-11-15 17:25:09 +08:00
@interface DressUpShopModel : PIBaseModel
2023-07-06 16:54:13 +08:00
2023-07-14 18:50:55 +08:00
///座驾图片
2023-07-06 16:54:13 +08:00
@property (nonatomic, strong) NSString *pic;
2023-07-14 18:50:55 +08:00
///id
2023-07-06 16:54:13 +08:00
@property (nonatomic, strong) NSString *dressUpId;
2023-07-14 18:50:55 +08:00
///
2023-07-06 16:54:13 +08:00
@property (nonatomic, copy) NSString *dressId;
2023-07-14 18:50:55 +08:00
///座驾名称
2023-07-06 16:54:13 +08:00
@property (nonatomic, strong) NSString *name;
2023-07-14 18:50:55 +08:00
///天数
2023-07-06 16:54:13 +08:00
@property (nonatomic, assign) NSInteger dressDay;
2023-07-14 18:50:55 +08:00
///价格
2023-07-06 16:54:13 +08:00
@property (nonatomic, assign) NSInteger dressPrice;
2023-07-14 18:50:55 +08:00
///装扮类型
2023-07-06 16:54:13 +08:00
@property (nonatomic, assign) NSInteger dressType;
2023-07-14 18:50:55 +08:00
///是否限时 0限时1不限时
2023-07-06 16:54:13 +08:00
@property (nonatomic, assign) NSInteger dressLimitStatus;
@end
NS_ASSUME_NONNULL_END