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

14 lines
278 B
C#
Raw Permalink Normal View History

2024-06-12 22:47:39 -07:00
#pragma warning disable CS1591
using Newtonsoft.Json;
namespace Discord.API.Rpc
{
internal class ReadyEvent
{
[JsonProperty("v")]
public int Version { get; set; }
[JsonProperty("config")]
public RpcConfig Config { get; set; }
}
}