YMWithdrawalAccountListCellViewModel.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // YMWithdrawalAccountListCellViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/6.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^RefreshWithdrawalAccountListBlock)(void);
  11. @interface YMWithdrawalAccountListCellViewModel : MSYOUPAIViewModel
  12. @property (nonatomic, copy) RefreshWithdrawalAccountListBlock refreshWithdrawalAccountListBlock;
  13. /// 前往绑定提现账号
  14. - (void)gotoBindWithdrawalAccount;
  15. /// 提现账号Id
  16. @property (nonatomic, assign, readonly) NSInteger withdrawalAccountId;
  17. /// 提现账号类型
  18. @property (nonatomic, assign, readonly) NSInteger withdrawalAccountType;
  19. /// 提现账号类型名称
  20. @property (nonatomic, strong, readonly) NSString *withdrawalAccountTypeName;
  21. /// 提现账号持有人
  22. @property (nonatomic, strong, readonly) NSString *withdrawalAccountHolder;
  23. /// 提现账号
  24. @property (nonatomic, strong, readonly) NSString *withdrawalAccount;
  25. /// 是否隐藏编辑按钮
  26. @property (nonatomic, assign, readonly) BOOL isHideEditButton;
  27. @end
  28. NS_ASSUME_NONNULL_END