38 lines
692 B
Objective-C
38 lines
692 B
Objective-C
//
|
|
// XPBindExtractInfoModel.h
|
|
// YuMi
|
|
//
|
|
// Created by YuMi on 2022/11/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "XPWithdrawAccountModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPBindExtractInfoModel : PIBaseModel
|
|
///提現信息
|
|
@property (nonatomic,strong) XPWithdrawAccountModel *account;
|
|
//钱包当前金币数
|
|
@property (nonatomic,assign) double golds;
|
|
//周剩余次数
|
|
@property (nonatomic,assign) NSInteger remainTimes;
|
|
//手续费
|
|
@property (nonatomic,assign) double fee;
|
|
@property (nonatomic,assign) NSInteger minGolds;
|
|
@property (nonatomic,assign) NSInteger maxGolds;
|
|
//有没有密码
|
|
@property (nonatomic,assign) BOOL hasPayPwd;
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|