23 lines
424 B
Objective-C
23 lines
424 B
Objective-C
//
|
|
// NobleRechargeModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/1/4.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "RechargeListModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
@interface NobleRechargeModel : PIBaseModel
|
|
|
|
@property (nonatomic, strong) NSArray<RechargeListModel *> *list;
|
|
@property (nonatomic, assign) NSInteger defaultPayH5;
|
|
@property (nonatomic, assign) NSInteger defaultPay;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|