NASMsgModel.h 522 B

12345678910111213141516171819202122232425
  1. //
  2. // NASMsgModel.h
  3. // Private-X
  4. //
  5. // Created by xd h on 2024/5/16.
  6. //
  7. #import "SuperModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface NASDataModel : SuperModel
  10. @property (nonatomic, copy) NSString * sn;//
  11. @property (nonatomic, copy) NSString * domainName;//
  12. @property (nonatomic, copy) NSString * ip;//
  13. @property (nonatomic, copy) NSString * port;//
  14. @property (nonatomic, copy) NSString *baseUrl;
  15. @end
  16. @interface NASMsgModel : SuperModel
  17. @property (nonatomic, strong) NASDataModel * data;//
  18. @end
  19. NS_ASSUME_NONNULL_END