1234567891011121314151617181920212223242526272829 |
- //
- // YMEditProfileAlbumCellViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/18.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMEditProfileAlbumCellViewModel : MSYOUPAIViewModel
- /** 是否添加Cell */
- @property (nonatomic, assign, readonly) BOOL isAddCell;
- /** 网络相册 */
- @property (nonatomic, copy, readonly) NSString *networkAlbum;
- /** 本地相册 */
- @property (nonatomic, strong, readonly) UIImage *localAlbum;
- /** 是否隐藏审核标签 */
- @property (nonatomic, assign, readonly) BOOL isHideUnderReviewLabel;
- /** 是否隐藏选择提示 */
- @property (nonatomic, assign, readonly) BOOL isHideSelectTips;
- /** 当前下标 */
- @property (nonatomic, strong) NSIndexPath *currentIndexPath;
- @end
- NS_ASSUME_NONNULL_END
|