| 123456789101112131415161718192021222324252627 |
- //
- // MOLiveBase.h
- //
- // Created by SuperCabbage on 2023/10/18
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOLiveBase : NSObject <NSCoding, NSCopying>
- /** 返回下一页的基准点 - 游标,NULL/空字符串 = 没有下一页 */
- @property (nonatomic, strong) NSString *next;
- /** */
- @property (nonatomic, strong) NSArray *liveList;
- /** 是否推荐数据 */
- @property (nonatomic, assign) BOOL recommend;
- /** 当前直播人数 (只有获取关注主播时有用) */
- @property (nonatomic, assign) double liveCount;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|