22 lines
578 B
Objective-C
22 lines
578 B
Objective-C
//
|
|
// BankModelData.h
|
|
//
|
|
// Created by Yao on 2024/11/9
|
|
// Copyright (c) 2024 zL. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface BankModelData : NSObject <NSCoding, NSCopying>
|
|
|
|
@property (nonatomic, strong) NSString *bankCode;
|
|
@property (nonatomic, assign) NSInteger identifier;
|
|
@property (nonatomic, strong) NSString *bankName;
|
|
@property (nonatomic, strong) NSString *country;
|
|
|
|
+ (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
|
|
- (instancetype)initWithDictionary:(NSDictionary *)dict;
|
|
- (NSDictionary *)dictionaryRepresentation;
|
|
|
|
@end
|