You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
508 B
18 lines
508 B
//
|
|
// CountryModel.h
|
|
// HC
|
|
//
|
|
// Created by huilinLi on 2025/11/26.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
@interface CountryModel : NSObject
|
|
@property (nonatomic, copy) NSString *code; // 国家代码
|
|
@property (nonatomic, copy) NSString *name; // 国家名称
|
|
@property (nonatomic, copy) NSString *vcClassName; // 子控制器名称
|
|
|
|
+ (instancetype)modelWithCode:(NSString *)code
|
|
name:(NSString *)name
|
|
vcClassName:(NSString *)vcClassName;
|
|
@end
|
|
|