mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-05-25 20:04:25 +00:00
24 lines
440 B
C#
24 lines
440 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
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; }
|
|
}
|
|
}
|