queryShareModel.h 341 B

123456789101112131415161718192021
  1. //
  2. // queryShareModel.h
  3. //
  4. //
  5. // Created by David on 2024/5/17.
  6. //
  7. #import "SuperModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface queryShareDataModel : SuperModel
  10. @property (nonatomic, assign) BOOL configValue;
  11. @end
  12. @interface queryShareModel : SuperModel
  13. @property (nonatomic, strong) queryShareDataModel*data;
  14. @end
  15. NS_ASSUME_NONNULL_END