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

12 lines
218 B
C#
Raw Normal View History

2024-06-12 22:47:39 -07:00
#pragma warning disable CS1591
using Newtonsoft.Json;
namespace Discord.API.Rpc
{
internal class GetChannelParams
{
[JsonProperty("channel_id")]
public ulong ChannelId { get; set; }
}
}