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