Files
peko-ios/YuMi/Modules/YMMine/Model/RecordIncome/YUMIDilemmaExtractAbstractMatrix.h

33 lines
627 B
C
Raw Normal View History

2023-07-06 16:54:13 +08:00
//
// 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