123456789101112131415161718192021 |
- //
- // YMSamplePhotoModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/23.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMSamplePhotoModel : NSObject
- @property (nonatomic, copy) NSString *action_image;
- @property (nonatomic, assign) NSInteger action_type;
- @property (nonatomic, copy) NSString *audit_remark;
- @property (nonatomic, assign) NSInteger audit_status;
- @end
- NS_ASSUME_NONNULL_END
|