// // YMAccountBalanceModel.h // MSYOUPAI // // Created by YoMi on 2024/2/28. // Copyright © 2024 MS. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @class YMAccountBalanceRechargeItemModel; @interface YMAccountBalanceModel : NSObject @property (nonatomic, copy) NSString *coin; @property (nonatomic, copy) NSString *income_coin; @property (nonatomic, copy) NSString *income_money; @property (nonatomic, strong) NSArray *list; @property (nonatomic, copy) NSString *money; @property (nonatomic, assign) NSInteger sel_id; @end @interface YMAccountBalanceRechargeItemModel: NSObject @property (nonatomic, assign) NSInteger amount; @property (nonatomic, strong) NSArray *btn_text; @property (nonatomic, assign) NSInteger rechargeItem_id; @property (nonatomic, copy) NSString *ios_product_id; @property (nonatomic, copy) NSString *name; @property (nonatomic, assign) NSInteger price; @property (nonatomic, copy) NSString *remark; @property (nonatomic, assign) NSInteger reward; @property (nonatomic, copy) NSString *vip_describe; @end NS_ASSUME_NONNULL_END