Files
yuyin_ios/SweetParty/主类/Mine/装扮&商城/SPShopMallModel.h

30 lines
712 B
C
Raw Permalink Normal View History

2025-08-08 11:05:33 +08:00
//
// 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