// // LZLiveEnum.h // TIANYAN // // Created by CY on 2021/5/28. // Copyright © 2021 leo. All rights reserved. // #ifndef LZLiveEnum_h #define LZLiveEnum_h typedef NS_ENUM(NSUInteger,LZLiveInviteType) { LZLiveInviteTypePK, // 邀请pk LZLiveInviteTypeLianMai, //邀请连麦 }; typedef NS_ENUM(NSUInteger,LZLiveInviteState) { LZLiveInviteStateCall, // 呼叫 LZLiveInviteStateAnswer, // 接听 }; typedef NS_ENUM(NSUInteger,LZLivePKState) { LZLivePKStatePK,// pk中 LZLivePKStatePunishment,// 惩罚中 LZLivePKStateEnd,// 结束,转连麦 }; typedef NS_ENUM(NSUInteger, LZLiveMemberListType) { LZLiveMemberListTypeOnline, // 在线观众 LZLiveMemberListTypeConsumption, /// 消费榜 }; typedef NS_ENUM(NSUInteger, LZLiveAnchorHotListType) { LZLiveAnchorHotListType_day, //日榜 LZLiveAnchorHotListType_week,//周榜 LZLiveAnchorHotListType_month/// 月榜 }; #endif /* LZLiveEnum_h */