queryShareReportMarkModel.h 390 B

123456789101112131415161718192021
  1. //
  2. // queryShareReportMarkModel.h
  3. // Private-X
  4. //
  5. // Created by xd h on 2024/7/24.
  6. //
  7. #import "SuperModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface queryShareReportMarkDataModel : SuperModel
  10. @property (nonatomic, assign) BOOL reportMark;
  11. @end
  12. @interface queryShareReportMarkModel : SuperModel
  13. @property (nonatomic, strong) queryShareReportMarkDataModel*data;
  14. @end
  15. NS_ASSUME_NONNULL_END