Files
peko-ios/YuMi/Modules/YMMonents/Model/MonentsInfoModel.m
2023-08-14 17:16:30 +08:00

29 lines
430 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