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