29 lines
412 B
Objective-C
29 lines
412 B
Objective-C
//
|
|
// MonentsInfoModel.m
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/5/11.
|
|
//
|
|
|
|
#import "MonentsInfoModel.h"
|
|
#import "NSString+Utils.h"
|
|
|
|
@implementation MonentsInfoModel
|
|
- (instancetype)init {
|
|
if (self = [super init]) {
|
|
self.isFold = YES;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
+ (NSDictionary *)objectClassInArray {
|
|
return @{@"dynamicResList":MonentsPicInfoModel.class};
|
|
}
|
|
@end
|
|
|
|
|
|
@implementation MonentsPicInfoModel
|
|
|
|
|
|
@end
|