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

14 lines
319 B
C#

using Newtonsoft.Json;
namespace Discord.API.Rpc
{
internal class ChannelSummary
{
[JsonProperty("id")]
public ulong Id { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("type")]
public ChannelType Type { get; set; }
}
}