mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-08-05 06:14:16 +00:00
19 lines
415 B
C#
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; }
|
|
}
|
|
} |