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