12345678910111213141516171819202122232425 |
- //
- // YMFeesSettingPriceModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/23.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMFeesSettingPriceModel.h"
- @implementation YMFeesSettingPriceModel
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{
- @"chat": [YMFeesPriceModel class],
- @"voice": [YMFeesPriceModel class],
- @"video": [YMFeesPriceModel class]
- };
- }
- @end
- @implementation YMFeesPriceModel
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{@"price_id":@"id",};
- }
- @end
|