22 lines
391 B
Objective-C
22 lines
391 B
Objective-C
//
|
|
// NewUserRechargeModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/7/29.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "FirstRechargeModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NewUserRechargeModel : NSObject
|
|
|
|
@property (nonatomic, assign) long limitEndTime;
|
|
|
|
@property (nonatomic, strong) NSArray<FirstRechargeModel *> *limitFirstChargeTaskList;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|