1234567891011121314151617181920212223242526272829 |
- //
- // YMMineQuantityInfoViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/25.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "BAGridItemModel.h"
- NS_ASSUME_NONNULL_BEGIN
- /** 数量信息类型 */
- typedef NS_ENUM(NSUInteger, YMMineQuantityInfoType) {
- /** 关注*/
- YMMineQuantityInfoTypeFollow = 12032,
- /** 粉丝*/
- YMMineQuantityInfoTypeFans,
- /** 足迹*/
- YMMineQuantityInfoTypeSpoor,
- /** 获赞*/
- YMMineQuantityInfoTypeReceivedLikes,
- /** 访客*/
- YMMineQuantityInfoTypeGuest,
- };
- @interface YMMineQuantityInfoViewModel : BAGridItemModel
- /// 数量信息类型
- @property (nonatomic, assign) YMMineQuantityInfoType infoType;
- @end
- NS_ASSUME_NONNULL_END
|