1234567891011121314151617181920 |
- //
- // YMReportReasonModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/5.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMReportReasonModel : NSObject
- @property (nonatomic, assign) NSInteger report_reason_id;
- @property (nonatomic, copy) NSString *name;
- @property (nonatomic, assign) NSInteger type;
- @end
- NS_ASSUME_NONNULL_END
|