YMPersonalPageGiftWallCellViewModel.h 592 B

123456789101112131415161718192021222324
  1. //
  2. // YMPersonalPageGiftWallCellViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/14.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMPersonalPageGiftWallCellViewModel : MSYOUPAIViewModel
  11. /// 礼物Id
  12. @property (nonatomic, assign, readonly) NSInteger giftId;
  13. /// 礼物名
  14. @property (nonatomic, copy, readonly) NSString *giftName;
  15. /// 礼物图标
  16. @property (nonatomic, copy, readonly) NSString *giftIcon;
  17. /// 礼物数量
  18. @property (nonatomic, copy, readonly) NSString *giftNumber;
  19. @end
  20. NS_ASSUME_NONNULL_END