17 lines
248 B
Objective-C
17 lines
248 B
Objective-C
//
|
|
// MonentsTopicModel.m
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/5/18.
|
|
//
|
|
|
|
#import "MomentsTopicModel.h"
|
|
|
|
@implementation MomentsTopicModel
|
|
|
|
+ (NSDictionary *)replacedKeyFromPropertyName {
|
|
return @{@"tId":@"id", @"desc":@"description"};
|
|
}
|
|
|
|
@end
|