1234567891011121314151617181920 |
- //
- // YMMyEarningsWithdrawalAmountCellViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/29.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMMyEarningsWithdrawalAmountCellViewModel : MSYOUPAIViewModel
- /// 提现金额
- @property (nonatomic, assign, readonly) NSInteger withdrawalAmount;
- /// 提现金币要求
- @property (nonatomic, assign, readonly) NSInteger withdrawalPointsRequirement;
- @end
- NS_ASSUME_NONNULL_END
|