YMReportReasonCellViewModel.h 547 B

12345678910111213141516171819202122
  1. //
  2. // YMReportReasonCellViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/5.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMReportReasonCellViewModel : MSYOUPAIViewModel
  11. /// 举报原因Id
  12. @property (nonatomic, assign, readonly) NSInteger reportReasonId;
  13. /// 举报原因名称
  14. @property (nonatomic, strong, readonly) NSString *reportReasonName;
  15. /// 举报原因类型
  16. @property (nonatomic, assign, readonly) NSInteger reportReasonType;
  17. @end
  18. NS_ASSUME_NONNULL_END