YMAppConfigModel.m 848 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // YMAppConfigModel.m
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/15.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMAppConfigModel.h"
  9. @implementation YMAppConfigModel
  10. + (NSDictionary *)modelContainerPropertyGenericClass {
  11. return @{
  12. @"config": [YMConfigModel class],
  13. @"dress":[YMDressModel class],
  14. @"version": [YMVersionModel class],
  15. @"webUrl":[YMWebUrlModel class],
  16. };
  17. }
  18. @end
  19. @implementation YMDressModel
  20. + (NSDictionary *)modelContainerPropertyGenericClass {
  21. return @{@"bubble": [YMBubbleModel class]};
  22. }
  23. @end
  24. @implementation YMBubbleModel
  25. @end
  26. @implementation YMConfigModel
  27. + (NSDictionary *)modelContainerPropertyGenericClass {
  28. return @{
  29. @"wx_info":[YMWxInfoModel class],
  30. };
  31. }
  32. @end
  33. @implementation YMWxInfoModel
  34. @end
  35. @implementation YMVersionModel
  36. @end