17 lines
258 B
Objective-C
17 lines
258 B
Objective-C
//
|
|
// MonentsListInfoModel.m
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/5/18.
|
|
//
|
|
|
|
#import "MonentsListInfoModel.h"
|
|
|
|
@implementation MonentsListInfoModel
|
|
|
|
+ (NSDictionary *)objectClassInArray {
|
|
return @{@"dynamicList":[MonentsInfoModel class]};
|
|
}
|
|
|
|
@end
|