25 lines
296 B
Objective-C
25 lines
296 B
Objective-C
//
|
|
// UserGameInfoVo.m
|
|
// xplan-ios
|
|
//
|
|
// Created by duoban on 2023/8/23.
|
|
//
|
|
|
|
#import "UserGameInfoVo.h"
|
|
|
|
@implementation UserGameInfoVo
|
|
+ (NSDictionary *)objectClassInArray {
|
|
return @{
|
|
@"tags":UserGameTagInfo.class,
|
|
|
|
};
|
|
}
|
|
@end
|
|
|
|
|
|
|
|
|
|
@implementation UserGameTagInfo
|
|
|
|
@end
|