Discord.Net/experiment/Discord.Net.Rpc/API/Rpc/GetChannelsResponse.cs
2024-06-13 17:47:39 +12:00

12 lines
282 B
C#

#pragma warning disable CS1591
using Newtonsoft.Json;
using System.Collections.Generic;
namespace Discord.API.Rpc
{
internal class GetChannelsResponse
{
[JsonProperty("channels")]
public IReadOnlyCollection<ChannelSummary> Channels { get; set; }
}
}