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

  1. //
  2. // CountryModel.m
  3. // HC
  4. //
  5. // Created by huilinLi on 2025/11/26.
  6. //
  7. #import "CountryModel.h"
  8. @implementation CountryModel
  9. + (instancetype)modelWithCode:(NSString *)code
  10. name:(NSString *)name
  11. vcClassName:(NSString *)vcClassName {
  12. CountryModel *model = [[self alloc] init];
  13. model.code = code;
  14. model.name = name;
  15. model.vcClassName = vcClassName;
  16. return model;
  17. }
  18. @end