Files
keyboard/keyBoard/Class/Shop/M/KBShopThemeDetailModel.m

24 lines
382 B
Mathematica
Raw Normal View History

2025-12-11 15:19:23 +08:00
//
// KBShopThemeDetailModel.m
// keyBoard
//
#import "KBShopThemeDetailModel.h"
#import <MJExtension/MJExtension.h>
@implementation KBShopThemeDetailModel
+ (NSDictionary *)mj_objectClassInArray {
return @{
@"themeTag" : KBShopThemeTagModel.class
};
}
+ (NSDictionary *)mj_replacedKeyFromPropertyName {
return @{
@"themeId" : @"id"
};
}
@end