Files
yinmeng-ios-store/yinmeng-ios/yinmeng-ios/Main/Mew/Mine/View/MewRechargeSubView.h

29 lines
597 B
Objective-C

//
// MewRechargeSubView.h
// mew-ios
//
// Created by 触海 on 2023/11/17.
//
#import <UIKit/UIKit.h>
@class RechargeListModel, WalletInfoModel;
NS_ASSUME_NONNULL_BEGIN
@protocol MewRechargeSubViewDelegate <NSObject>
- (void)didSelectMewRechargeChargeProdId:(NSString *)chargeProdId;
@end
@interface MewRechargeSubView : UIView
// 充值模型
@property (nonatomic, copy) NSArray<RechargeListModel *> *rechargeModels;
// 钱包
@property (nonatomic, strong) WalletInfoModel *walletModel;
@property (nonatomic, weak) id<MewRechargeSubViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END