cloudPhoneCommonModel.h 428 B

12345678910111213141516171819202122
  1. //
  2. // cloudPhoneCommonModel.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2024/2/4.
  6. //
  7. #import "SuperModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface cloudPhoneCommonDataModel : SuperModel
  10. @property (nonatomic, copy) NSString * msg;
  11. @end
  12. @interface cloudPhoneCommonModel : SuperModel
  13. @property (nonatomic, copy) cloudPhoneCommonDataModel * data;//
  14. @property (nonatomic, copy) NSString * type;//类型
  15. @end
  16. NS_ASSUME_NONNULL_END