YMFeesSettingPriceModel.m 546 B

12345678910111213141516171819202122232425
  1. //
  2. // YMFeesSettingPriceModel.m
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/23.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMFeesSettingPriceModel.h"
  9. @implementation YMFeesSettingPriceModel
  10. + (NSDictionary *)modelContainerPropertyGenericClass {
  11. return @{
  12. @"chat": [YMFeesPriceModel class],
  13. @"voice": [YMFeesPriceModel class],
  14. @"video": [YMFeesPriceModel class]
  15. };
  16. }
  17. @end
  18. @implementation YMFeesPriceModel
  19. + (NSDictionary *)modelCustomPropertyMapper {
  20. return @{@"price_id":@"id",};
  21. }
  22. @end