YMAuthenticationCenterViewModel.h 951 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // YMAuthenticationCenterViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/2.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMAuthenticationCenterViewModel : MSYOUPAIViewModel
  11. /// 上传认证照数据
  12. - (void)uploadAuthenticationPhotoData;
  13. /// 前往自定义相机
  14. - (void)gotoCustomCamera;
  15. /// 示例照链接
  16. @property (nonatomic, strong, readonly) NSString *samplePhotoUrl;
  17. /// 示例照类型
  18. @property (nonatomic, assign, readonly) NSInteger samplePhotoType;
  19. /// 我的照片
  20. @property (nonatomic, strong, readonly) UIImage *photo;
  21. /// 选中认证照数组
  22. @property (nonatomic, strong, readonly) NSMutableArray <UIImage *>*auditPhotoArray;
  23. /// 添加认证照
  24. @property (nonatomic, strong, readonly) RACSubject *addAuditPhotoSubject;
  25. /// 删除认证照
  26. @property (nonatomic, strong, readonly) RACSubject *deleteAuditPhotoSubject;
  27. @end
  28. NS_ASSUME_NONNULL_END