Files
keyboard/keyBoard/Class/Search/M/KBSearchThemeModel.h
2025-12-17 20:30:01 +08:00

35 lines
1020 B
Objective-C

//
// KBSearchThemeModel.h
// keyBoard
//
// Created by Mac on 2025/12/17.
//
#import <Foundation/Foundation.h>
#import <CoreGraphics/CoreGraphics.h>
@class KBShopThemeTagModel;
NS_ASSUME_NONNULL_BEGIN
/// /themes/search 返回的主题模型
@interface KBSearchThemeModel : 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, copy, nullable) NSString *themeDownloadUrl;
@property (nonatomic, assign) NSInteger themePurchasesNumber;
@property (nonatomic, assign) NSInteger sort;
@property (nonatomic, assign) BOOL isFree;
@property (nonatomic, assign) BOOL isPurchased;
@end
NS_ASSUME_NONNULL_END