using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WGShare.Domain.Entities
{
///
/// 用户在频道中的状态
///
public class ChannelUserInfo
{
public ChannelUserInfo()
{
}
///
///
///
///
///
/// 是否关闭麦克风,默认关
/// 是否关闭摄像头,默认关
public ChannelUserInfo(string uid, string connectId, bool enableMicr, bool enableCamera, string account, string screenShareId)
{
this.UID = uid;
this.ConnectId = connectId;
this.EnableMicr = enableMicr;
this.EnableCamera = enableCamera;
this.Account = account;
this.ScreenShareId = screenShareId;
}
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; }
}
}