Files
peko-ios/YuMi/Modules/YMMine/View/DressUp/Model/DressUpShopModel.h
2023-11-15 17:25:09 +08:00

34 lines
730 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// DressUpShopModel.h
// YUMI
//
// Created by YUMI on 2022/7/28.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface DressUpShopModel : PIBaseModel
///座驾图片
@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