// // KBSearchThemeModel.h // keyBoard // // Created by Mac on 2025/12/17. // #import #import @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 *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