12345678910111213141516171819202122232425262728293031 |
- //
- // YMAuthenticationCenterViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/2.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMAuthenticationCenterViewModel : MSYOUPAIViewModel
- /// 上传认证照数据
- - (void)uploadAuthenticationPhotoData;
- /// 前往自定义相机
- - (void)gotoCustomCamera;
- /// 示例照链接
- @property (nonatomic, strong, readonly) NSString *samplePhotoUrl;
- /// 示例照类型
- @property (nonatomic, assign, readonly) NSInteger samplePhotoType;
- /// 我的照片
- @property (nonatomic, strong, readonly) UIImage *photo;
- /// 选中认证照数组
- @property (nonatomic, strong, readonly) NSMutableArray <UIImage *>*auditPhotoArray;
- /// 添加认证照
- @property (nonatomic, strong, readonly) RACSubject *addAuditPhotoSubject;
- /// 删除认证照
- @property (nonatomic, strong, readonly) RACSubject *deleteAuditPhotoSubject;
- @end
- NS_ASSUME_NONNULL_END
|