using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WGShare.Domain.Entities { /// /// 用户在频道中的状态 /// public class ChannelUserInfo { public string UID { get; set; } public string ConnectId { get; set; } public string Account { get; set; } /// /// 是否关闭麦克风 /// public bool EnableMicr { get; set; } /// /// 是否关闭摄像头 /// public bool EnableCamera { get; set; } public string ScreenShareId { get; set; } public string UserName { get; set; } public string RoleId { get; set; } public string RoleName { get; set; } /// /// 是否房间管理员 /// public bool IsRoomManager { get; set; } } }