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

  1. //
  2. // CountryModel.h
  3. // HC
  4. //
  5. // Created by huilinLi on 2025/11/26.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface CountryModel : NSObject
  9. @property (nonatomic, copy) NSString *code; // 国家代码
  10. @property (nonatomic, copy) NSString *name; // 国家名称
  11. @property (nonatomic, copy) NSString *vcClassName; // 子控制器名称
  12. + (instancetype)modelWithCode:(NSString *)code
  13. name:(NSString *)name
  14. vcClassName:(NSString *)vcClassName;
  15. @end