YMEditProfileAlbumCellViewModel.h 810 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YMEditProfileAlbumCellViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/18.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMEditProfileAlbumCellViewModel : MSYOUPAIViewModel
  11. /** 是否添加Cell */
  12. @property (nonatomic, assign, readonly) BOOL isAddCell;
  13. /** 网络相册 */
  14. @property (nonatomic, copy, readonly) NSString *networkAlbum;
  15. /** 本地相册 */
  16. @property (nonatomic, strong, readonly) UIImage *localAlbum;
  17. /** 是否隐藏审核标签 */
  18. @property (nonatomic, assign, readonly) BOOL isHideUnderReviewLabel;
  19. /** 是否隐藏选择提示 */
  20. @property (nonatomic, assign, readonly) BOOL isHideSelectTips;
  21. /** 当前下标 */
  22. @property (nonatomic, strong) NSIndexPath *currentIndexPath;
  23. @end
  24. NS_ASSUME_NONNULL_END