XYGiveRewardGiftModel.h 686 B

12345678910111213141516171819202122232425262728
  1. //
  2. // XYGiveRewardGiftModel.h
  3. // Timi
  4. //
  5. // Created by 翟玉磊 on 2021/11/16.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface XYGiveRewardGiftModel : NSObject
  10. @property (nonatomic, copy) NSString *giftId;
  11. @property (nonatomic, assign) NSInteger giftPriceType;
  12. @property (nonatomic, assign) NSInteger giftType;
  13. @property (nonatomic, copy) NSString *giftPrice;
  14. @property (nonatomic, copy) NSString *giftPriceTypeName;
  15. @property (nonatomic, copy) NSString *giftName;
  16. @property (nonatomic, copy) NSString *giftCategory;
  17. @property (nonatomic, copy) NSString *giftIcon;
  18. // 是否选中
  19. @property (nonatomic, assign) BOOL status;
  20. @end
  21. NS_ASSUME_NONNULL_END