33 lines
627 B
C
33 lines
627 B
C
![]() |
//
|
||
|
// YUMIDilemmaExtractAbstractMatrix.h
|
||
|
// YuMi
|
||
|
//
|
||
|
// Created by YuMi on 2022/11/18.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "YUMIWithdrawAccountMatrix.h"
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface YUMIDilemmaExtractAbstractMatrix : NSObject
|
||
|
@property (nonatomic,strong) YUMIWithdrawAccountMatrix *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
|