12345678910111213141516171819202122232425262728293031 |
- //
- // YMBlackListCellViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/21.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^RemoveBlackBlock)(void);
- @interface YMBlackListCellViewModel : MSYOUPAIViewModel
- @property (nonatomic, copy) RemoveBlackBlock removeBlackBlock;
- /// 移除黑名单数据
- - (void)removeBlackData;
- /// 用户头像
- @property (nonatomic, strong, readonly) NSString *userAvatar;
- /// 用户昵称
- @property (nonatomic, strong, readonly) NSString *userNickname;
- /// 用户简介
- @property (nonatomic, strong, readonly) NSString *userIntro;
- /// 用户性别和年龄图标
- @property (nonatomic, strong, readonly) UIImage *userGenderAndAgeIcon;
- /// 用户性别和年龄文本
- @property (nonatomic, strong, readonly) NSString *userGenderAndAgeText;
- /// 用户性别
- @property (nonatomic, strong, readonly) NSString *userGender;
- @end
- NS_ASSUME_NONNULL_END
|