12345678910111213141516171819202122 |
- //
- // YMReportReasonCellViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/5.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMReportReasonCellViewModel : MSYOUPAIViewModel
- /// 举报原因Id
- @property (nonatomic, assign, readonly) NSInteger reportReasonId;
- /// 举报原因名称
- @property (nonatomic, strong, readonly) NSString *reportReasonName;
- /// 举报原因类型
- @property (nonatomic, assign, readonly) NSInteger reportReasonType;
- @end
- NS_ASSUME_NONNULL_END
|