17 lines
301 B
Mathematica
17 lines
301 B
Mathematica
|
|
//
|
||
|
|
// KBMyMainModel.m
|
||
|
|
// keyBoard
|
||
|
|
//
|
||
|
|
// Created by Mac on 2025/12/8.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "KBMyMainModel.h"
|
||
|
|
|
||
|
|
@implementation KBMyMainModel
|
||
|
|
+ (NSDictionary *)mj_objectClassInArray {
|
||
|
|
// JSON: { "id": 0, "tagName": "xxx" }
|
||
|
|
// Model: tagId / tagName
|
||
|
|
return @{@"data":[KBTagItemModel class]};
|
||
|
|
}
|
||
|
|
@end
|