123456789101112131415161718192021 |
- //
- // YMMyEarningsModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/29.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMMyEarningsModel.h"
- @implementation YMMyEarningsModel
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{
- @"list": [YMMyEarningsWithdrawalAmountModel class],
- };
- }
- @end
- @implementation YMMyEarningsWithdrawalAmountModel
- @end
|