22 lines
448 B
C#
22 lines
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WGShare.Domain.AgoraApiResult
|
|
{
|
|
public class Channel
|
|
{
|
|
public List<ChannelUserCount> channels { get; set; }
|
|
public int total_size { get; set; }
|
|
}
|
|
|
|
public class ChannelUserCount
|
|
{
|
|
public string channel_name { get; set; }
|
|
|
|
public int user_count { get; set; }
|
|
}
|
|
}
|