Files
keyboard/keyBoard/Class/Shop/M/KBShopThemeModel.h
2025-12-11 13:16:06 +08:00

35 lines
967 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// KBShopThemeModel.h
// keyBoard
//
// Created by Mac on 2025/12/11.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface KBShopThemeModel : NSObject
/// 主题 id
@property (nonatomic, copy, nullable) NSString *themeId;
/// 主题名称
@property (nonatomic, copy, nullable) NSString *themeName;
/// 价格(单位:接口返回的货币)
@property (nonatomic, assign) CGFloat themePrice;
/// 标签或风格名称
@property (nonatomic, copy, nullable) NSString *themeTag;
/// 下载量描述
@property (nonatomic, copy, nullable) NSString *themeDownload;
/// 风格类型(接口返回 themeStyle
@property (nonatomic, assign) NSInteger themeStyle;
/// 是否上架
@property (nonatomic, assign, getter=isThemeStatus) BOOL themeStatus;
/// 购买次数
@property (nonatomic, assign) NSInteger themePurchasesNumber;
/// 预览图
@property (nonatomic, copy, nullable) NSString *themePreviewImageUrl;
@end
NS_ASSUME_NONNULL_END