YMWealthModel.m 386 B

12345678910111213141516171819202122
  1. //
  2. // YMWealthModel.m
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/27.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMWealthModel.h"
  9. @implementation YMWealthModel
  10. + (NSDictionary *)modelContainerPropertyGenericClass {
  11. return @{
  12. @"account":[YMAccountModel class],
  13. @"webUrl":[YMWebUrlModel class],
  14. };
  15. }
  16. @end
  17. @implementation YMAccountModel
  18. @end