25 lines
640 B
C
25 lines
640 B
C
![]() |
//
|
||
|
// YUMIWithdrawAccountMatrix.h
|
||
|
// YuMi
|
||
|
//
|
||
|
// Created by YuMi on 2022/11/18.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface YUMIWithdrawAccountMatrix : NSObject
|
||
|
@property (nonatomic,copy) NSString *uid;
|
||
|
@property (nonatomic,copy) NSString *swift;
|
||
|
@property (nonatomic,copy) NSString *bankName;
|
||
|
@property (nonatomic,copy) NSString *accountNumber;
|
||
|
@property (nonatomic,copy) NSString *accountName;
|
||
|
@property (nonatomic,copy) NSString *address;
|
||
|
@property (nonatomic,copy) NSString *city;
|
||
|
@property (nonatomic,copy) NSString *province;
|
||
|
@property (nonatomic,copy) NSString *postCode;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|