Files
2021-02-07 11:24:08 +08:00

26 lines
403 B
Objective-C

//
// WXYZ_AboutModel.m
// WXReader
//
// Created by Andrew on 2018/10/15.
// Copyright © 2018 Andrew. All rights reserved.
//
#import "WXYZ_AboutModel.h"
@implementation WXYZ_AboutModel
+ (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
return @{
@"about" : [WXYZ_ContactInfoModel class]
};
}
@end
@implementation WXYZ_ContactInfoModel
@end