// // YMWithdrawalAccountListCellViewModel.h // MSYOUPAI // // Created by YoMi on 2024/3/6. // Copyright © 2024 MS. All rights reserved. // #import "MSYOUPAIViewModel.h" NS_ASSUME_NONNULL_BEGIN typedef void(^RefreshWithdrawalAccountListBlock)(void); @interface YMWithdrawalAccountListCellViewModel : MSYOUPAIViewModel @property (nonatomic, copy) RefreshWithdrawalAccountListBlock refreshWithdrawalAccountListBlock; /// 前往绑定提现账号 - (void)gotoBindWithdrawalAccount; /// 提现账号Id @property (nonatomic, assign, readonly) NSInteger withdrawalAccountId; /// 提现账号类型 @property (nonatomic, assign, readonly) NSInteger withdrawalAccountType; /// 提现账号类型名称 @property (nonatomic, strong, readonly) NSString *withdrawalAccountTypeName; /// 提现账号持有人 @property (nonatomic, strong, readonly) NSString *withdrawalAccountHolder; /// 提现账号 @property (nonatomic, strong, readonly) NSString *withdrawalAccount; /// 是否隐藏编辑按钮 @property (nonatomic, assign, readonly) BOOL isHideEditButton; @end NS_ASSUME_NONNULL_END