12345678910111213141516171819202122232425 |
- //
- // YMPayMethodCellViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/21.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMPayMethodCellViewModel : MSYOUPAIViewModel
- /// 支付Id
- @property (nonatomic, strong, readonly) NSString *payId;
- /// 支付图标
- @property (nonatomic, strong, readonly) NSString *payIcon;
- /// 支付标题
- @property (nonatomic, strong, readonly) NSString *payTitle;
- /// 支付代码
- @property (nonatomic, strong, readonly) NSString *payCode;
- @end
- NS_ASSUME_NONNULL_END
|