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.
20 lines
438 B
20 lines
438 B
//
|
|
// CountryModel.m
|
|
// HC
|
|
//
|
|
// Created by huilinLi on 2025/11/26.
|
|
//
|
|
|
|
#import "CountryModel.h"
|
|
|
|
@implementation CountryModel
|
|
+ (instancetype)modelWithCode:(NSString *)code
|
|
name:(NSString *)name
|
|
vcClassName:(NSString *)vcClassName {
|
|
CountryModel *model = [[self alloc] init];
|
|
model.code = code;
|
|
model.name = name;
|
|
model.vcClassName = vcClassName;
|
|
return model;
|
|
}
|
|
@end
|