1
This commit is contained in:
25
keyBoard/Class/Me/M/KBMyTheme.h
Normal file
25
keyBoard/Class/Me/M/KBMyTheme.h
Normal file
@@ -0,0 +1,25 @@
|
||||
//
|
||||
// KBMyTheme.h
|
||||
// keyBoard
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <CoreGraphics/CoreGraphics.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
/// “我的皮肤”页已购主题模型
|
||||
@interface KBMyTheme : NSObject
|
||||
@property (nonatomic, copy, nullable) NSString *themeId;
|
||||
@property (nonatomic, copy, nullable) NSString *themeName;
|
||||
@property (nonatomic, assign) CGFloat themePrice;
|
||||
@property (nonatomic, copy, nullable) NSArray<NSString *> *themeTag;
|
||||
@property (nonatomic, copy, nullable) NSString *themeDownload;
|
||||
@property (nonatomic, assign) NSInteger themeStyle;
|
||||
@property (nonatomic, assign) BOOL themeStatus;
|
||||
@property (nonatomic, assign) NSInteger themePurchasesNumber;
|
||||
@property (nonatomic, assign) NSInteger sort;
|
||||
@property (nonatomic, assign) BOOL isFree;
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
17
keyBoard/Class/Me/M/KBMyTheme.m
Normal file
17
keyBoard/Class/Me/M/KBMyTheme.m
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// KBMyTheme.m
|
||||
// keyBoard
|
||||
//
|
||||
|
||||
#import "KBMyTheme.h"
|
||||
#import <MJExtension/MJExtension.h>
|
||||
|
||||
@implementation KBMyTheme
|
||||
|
||||
+ (NSDictionary *)mj_replacedKeyFromPropertyName {
|
||||
return @{
|
||||
@"themeId": @"id"
|
||||
};
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user