using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WGShare.Domain.AgoraApiResult { public class ChannelUser { /// /// 频道是否存在 /// public bool channel_exist { get; set; } /// /// 频道场景 1:通信场景 2:直播场景 /// public int mode { get; set; } /// /// 频道总人数 /// public int total { get; set; } public List users { get; set; } } }