YMMineQuantityInfoViewModel.h 710 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YMMineQuantityInfoViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/25.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "BAGridItemModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. /** 数量信息类型 */
  11. typedef NS_ENUM(NSUInteger, YMMineQuantityInfoType) {
  12. /** 关注*/
  13. YMMineQuantityInfoTypeFollow = 12032,
  14. /** 粉丝*/
  15. YMMineQuantityInfoTypeFans,
  16. /** 足迹*/
  17. YMMineQuantityInfoTypeSpoor,
  18. /** 获赞*/
  19. YMMineQuantityInfoTypeReceivedLikes,
  20. /** 访客*/
  21. YMMineQuantityInfoTypeGuest,
  22. };
  23. @interface YMMineQuantityInfoViewModel : BAGridItemModel
  24. /// 数量信息类型
  25. @property (nonatomic, assign) YMMineQuantityInfoType infoType;
  26. @end
  27. NS_ASSUME_NONNULL_END