LiveGiftListModel.h 780 B

123456789101112131415161718192021222324252627
  1. //
  2. // ZYGiftListModel.h
  3. // LiveSendGift
  4. //
  5. // Created by Jonhory on 2016/11/11.
  6. // Copyright © 2016年 com.wujh. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "MOGiftInfo.h"
  10. #define KTimeOutNum [MOSvgaSourceManage shareManager].giftShowAnimation
  11. @interface LiveGiftListModel : NSObject
  12. @property(nonatomic, strong) NSString *type;/**< 礼物类型 */
  13. @property(nonatomic, strong) NSString *name;/**< 礼物的名称*/
  14. @property(nonatomic, strong) NSString *picUrl;/**< 右侧礼物图片url */
  15. @property(nonatomic, strong) NSString *rewardMsg;/**< 礼物配置的语句 */
  16. /** 礼物原始数据 */
  17. @property(nonatomic, strong) MOGiftInfo *giftData;
  18. /** RTM 消息, 其中有 中奖 信息 */
  19. @property(nonatomic, strong) MORtmEntity *entity;
  20. @end