1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // YMAppConfigModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/15.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMAppConfigModel.h"
- @implementation YMAppConfigModel
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{
- @"config": [YMConfigModel class],
- @"dress":[YMDressModel class],
- @"version": [YMVersionModel class],
- @"webUrl":[YMWebUrlModel class],
- };
- }
- @end
- @implementation YMDressModel
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{@"bubble": [YMBubbleModel class]};
- }
- @end
- @implementation YMBubbleModel
- @end
- @implementation YMConfigModel
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{
- @"wx_info":[YMWxInfoModel class],
- };
- }
- @end
- @implementation YMWxInfoModel
- @end
- @implementation YMVersionModel
- @end
|