1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- //
- // YOUPAILZLiveModel.h
- // TIANYAN
- //
- // Created by CY on 2021/5/17.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "YOUPAILCUserShowInfo.h"
- #import "YOUPAILZLivePKDataAttachment.h"
- #import "YOUPAILZLiveScreenShotsModel.h"
- #import "YOUPAILZLiveRecommendGiftModel.h"
- #import "YOUPAILZLiveBarrageAttachment.h"
- #import "YOUPAILZLiveCarAttachment.h"
- #import "YOUPAILZLiveVipBarrageAttachment.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface LZLiveAnchorRankInfoContentModel : NSObject
- @property (nonatomic, strong) NSString *youpaipval;
- @property (nonatomic, strong) NSString *youpaipdetail;
- @end
- @interface LZLiveAnchorRankInfoModel : NSObject
- @property (nonatomic,strong) LZLiveAnchorRankInfoContentModel *youpaipno;
- @property (nonatomic,strong) LZLiveAnchorRankInfoContentModel *youpaiptotalMoney;
- @property (nonatomic,strong) LZLiveAnchorRankInfoContentModel *youpaipgapMoney;
- @end
- @interface LZLiveTopThreeModel : NSObject
- @property (nonatomic, strong) NSString *youpaipid;
- @property (nonatomic, strong) NSString *youpaipavatar;
- @property (nonatomic, strong) NSString *youpaipscore;
- @end
- @interface YOUPAILZLiveModel : NSObject
- @property (nonatomic, strong) NSString *youpaiplive_id; // 直播间id
- @property (nonatomic, strong) NSString *youpaiproomid; // 聊天室id
- @property (nonatomic, strong) NSString *youpaipcharm_value; // 魅力值
- @property (nonatomic, strong) NSString *youpaipfans_count; // 粉丝数
- @property (nonatomic, strong) NSString *youpaiproom_title; // 直播间标题
- @property (nonatomic, strong) NSString *youpaipnotice_text; // 绿色公告
- @property (nonatomic, strong) YOUPAILCUserShowInfo *youpaipuser_info; // 女神信息
- @property (nonatomic, strong) YOUPAILZLivePKDataAttachment *youpaippk_info; // pk信息
- @property (nonatomic, strong) YOUPAILZLiveScreenShotsModel *youpaipscreenshots; // 截屏信息
- @property (nonatomic, assign) NSInteger youpaipis_virtual; // 是否机器人播放音频 1、是;0、否
- @property (nonatomic, strong) NSString *youpaipcoverimg; // 播放音频的背景图
- @property (nonatomic, strong) LZLiveAnchorRankInfoModel *youpaipanchor_rank_info; // 当前女神榜
- @property (nonatomic, strong) NSDictionary *youpaiprank_top_three; // 排行榜前三
- @property (nonatomic, strong) YOUPAILZLiveRecommendGiftModel *youpaiprecommend_gift; //推荐礼物
- @property (nonatomic, strong) NSArray <LZLiveTopThreeModel *>*youpaiplive_top_three; //直播间前三
- @property (nonatomic, readonly) UIFont *youpaipmaxFont;
- @property (nonatomic, readonly) UIFont *youpaipminFont;
- @property (nonatomic, assign) BOOL youpaipisMaxFont;
- @property (nonatomic, assign) NSInteger youpaiptype;//1正在直播 0直播已结束
- /// 是否上榜
- @property (nonatomic, assign) NSInteger youpaipis_fly;
- @property (nonatomic, strong) YOUPAILZLiveBarrageAttachment *youpaipu_data;
- /// 是否有座驾
- @property (nonatomic, assign) NSInteger youpaipis_fly_car;
- @property (nonatomic, strong) YOUPAILZLiveCarAttachment *youpaipcar_data;
- /// 是否有vip飘屏
- @property (nonatomic, assign) NSInteger youpaipis_fly_noble;
- @property (nonatomic, strong) YOUPAILZLiveVipBarrageAttachment *youpaipb_box_data;
- @property (nonatomic, assign) NSInteger youpaipis_comein_room_hide;
- - (CGFloat)youpaifnoticeTextHeight;
- @end
- NS_ASSUME_NONNULL_END
|