Discord.Net/experiment/Discord.Net.Rpc/API/Rpc/GetChannelsResponse.cs

13 lines
282 B
C#
Raw Normal View History

2024-06-12 22:47:39 -07:00
#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; }
}
}