30 lines
712 B
Objective-C
Executable File
30 lines
712 B
Objective-C
Executable File
//
|
|
// SPShopMallModel.h
|
|
// romantic
|
|
//
|
|
// Created by bj_szd on 2022/7/29.
|
|
// Copyright © 2022 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPShopMallModel : NSObject
|
|
|
|
@property(nonatomic, copy) NSString *did;
|
|
@property(nonatomic, copy) NSString *base_image;
|
|
@property(nonatomic, copy) NSString *play_image;
|
|
@property(nonatomic, copy) NSString *title;
|
|
//类型 1头像框 2坐骑 3资料展示 4麦位光圈
|
|
@property(nonatomic, assign) NSInteger type;
|
|
@property(nonatomic, copy) NSString *price;
|
|
@property(nonatomic, copy) NSString *period;
|
|
|
|
//装扮价位列表
|
|
@property(nonatomic, strong) NSArray *decorate_price;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|