IVTHotAndFollowVideoModel.h
1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// IVTHotAndFollowVideoModel.h
// IVTMeLiveTwo
//
// Created by xrg on 16/8/25.
// Copyright © 2016年 QLQ. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface IVTHotAndFollowVideoModel : NSObject
@property (nonatomic, strong)NSString * ID; //
@property (nonatomic, strong)NSString * userIDToLive;
@property (nonatomic, strong)NSString * userid; // xmppJID
@property (nonatomic, strong)NSString * city; // 定位
@property (nonatomic, strong)NSString * name; // 主播名字
@property (nonatomic, strong)NSString * liveRoomName; // 直播室名称
@property (nonatomic, strong)NSString * portrait; // avatar
@property (nonatomic, strong)NSString * thumbnail; // 直播大图
@property (nonatomic, strong)NSString * url; // 推流地址
@property (nonatomic, strong)NSString * chatRoomJid; // XMPP直播室地址
@property (nonatomic, assign)int likeNum; // 喜欢人数
@property (nonatomic, assign)int online_users; // 在线人数
@property (nonatomic) NSInteger miTangNumber; // 蜜糖总数
- (id)initWithDict:(NSDictionary *)liveDict;
@end