YMMyEarningsWithdrawalAmountCellViewModel.h 496 B

1234567891011121314151617181920
  1. //
  2. // YMMyEarningsWithdrawalAmountCellViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/29.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMMyEarningsWithdrawalAmountCellViewModel : MSYOUPAIViewModel
  11. /// 提现金额
  12. @property (nonatomic, assign, readonly) NSInteger withdrawalAmount;
  13. /// 提现金币要求
  14. @property (nonatomic, assign, readonly) NSInteger withdrawalPointsRequirement;
  15. @end
  16. NS_ASSUME_NONNULL_END