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