2025-12-11 15:19:23 +08:00
|
|
|
//
|
|
|
|
|
// KBShopThemeDetailModel.h
|
|
|
|
|
// keyBoard
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
|
|
|
#import "KBShopThemeTagModel.h"
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
@interface KBShopThemeDetailModel : NSObject
|
|
|
|
|
@property (nonatomic, copy, nullable) NSString *themeId;
|
|
|
|
|
@property (nonatomic, copy, nullable) NSString *themeName;
|
|
|
|
|
@property (nonatomic, assign) CGFloat themePrice;
|
|
|
|
|
@property (nonatomic, strong, nullable) NSArray<KBShopThemeTagModel *> *themeTag;
|
|
|
|
|
@property (nonatomic, copy, nullable) NSString *themeDownload;
|
|
|
|
|
@property (nonatomic, assign) NSInteger themeStyle;
|
|
|
|
|
@property (nonatomic, copy, nullable) NSString *themePreviewImageUrl;
|
|
|
|
|
@property (nonatomic, assign) NSInteger themePurchasesNumber;
|
|
|
|
|
@property (nonatomic, assign) NSInteger sort;
|
|
|
|
|
@property (nonatomic, assign) BOOL isFree;
|
2025-12-11 16:18:00 +08:00
|
|
|
/// 是否购买
|
2025-12-11 15:19:23 +08:00
|
|
|
@property (nonatomic, assign) BOOL isPurchased;
|
2025-12-11 16:18:00 +08:00
|
|
|
/// 下载ZIP
|
|
|
|
|
@property (nonatomic, copy, nullable) NSString *themeDownloadUrl;
|
2025-12-11 15:19:23 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|