Files
SDR-RPC/SDR-RPC/DiscordAPI/IO/Handshake.cs
2024-08-15 13:32:33 +03:00

19 lines
415 B
C#

using Newtonsoft.Json;
namespace DiscordRPC.IO
{
internal class Handshake
{
/// <summary>
/// Version of the IPC API we are using
/// </summary>
[JsonProperty("v")]
public int Version { get; set; }
/// <summary>
/// The ID of the app.
/// </summary>
[JsonProperty("client_id")]
public string ClientID { get; set; }
}
}