123456789101112131415161718192021222324 |
- //
- // PBGiftModel.h
- // PBSDK
- //
- // Created by hello on 2024/12/31.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PBGiftModel : NSObject
- @property (nonatomic, strong) NSString *code ;// 编码 string
- @property (nonatomic, strong) NSString *createTime ;// 时间 string(date-time)
- @property (nonatomic, strong) NSString *giftDesc ;// 礼物详情 string
- @property (nonatomic, strong) NSString *giftGifUrl ;// 礼物动态图片地址 string
- @property (nonatomic, strong) NSString *giftImgUrl ;// 礼物图片地址 string
- @property (nonatomic, strong) NSString *giftName ;// 礼物名字 string
- @property (nonatomic, strong) NSNumber *giftPrice;// 礼物价格 integer(int64)
- @property (nonatomic, strong) NSNumber *id;// id integer(int64)
- @property (nonatomic, strong) NSString *status;
- @end
- NS_ASSUME_NONNULL_END
|