// // YMPersonalPageGiftWallCellViewModel.h // MSYOUPAI // // Created by YoMi on 2024/3/14. // Copyright © 2024 MS. All rights reserved. // #import "MSYOUPAIViewModel.h" NS_ASSUME_NONNULL_BEGIN @interface YMPersonalPageGiftWallCellViewModel : MSYOUPAIViewModel /// 礼物Id @property (nonatomic, assign, readonly) NSInteger giftId; /// 礼物名 @property (nonatomic, copy, readonly) NSString *giftName; /// 礼物图标 @property (nonatomic, copy, readonly) NSString *giftIcon; /// 礼物数量 @property (nonatomic, copy, readonly) NSString *giftNumber; @end NS_ASSUME_NONNULL_END