12345678910111213141516171819202122232425262728 |
- //
- // XYGiveRewardGiftModel.h
- // Timi
- //
- // Created by 翟玉磊 on 2021/11/16.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface XYGiveRewardGiftModel : NSObject
- @property (nonatomic, copy) NSString *giftId;
- @property (nonatomic, assign) NSInteger giftPriceType;
- @property (nonatomic, assign) NSInteger giftType;
- @property (nonatomic, copy) NSString *giftPrice;
- @property (nonatomic, copy) NSString *giftPriceTypeName;
- @property (nonatomic, copy) NSString *giftName;
- @property (nonatomic, copy) NSString *giftCategory;
- @property (nonatomic, copy) NSString *giftIcon;
- // 是否选中
- @property (nonatomic, assign) BOOL status;
- @end
- NS_ASSUME_NONNULL_END
|