// // 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