YMReportReasonModel.h 408 B

1234567891011121314151617181920
  1. //
  2. // YMReportReasonModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/5.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMReportReasonModel : NSObject
  11. @property (nonatomic, assign) NSInteger report_reason_id;
  12. @property (nonatomic, copy) NSString *name;
  13. @property (nonatomic, assign) NSInteger type;
  14. @end
  15. NS_ASSUME_NONNULL_END