mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-07-12 07:59:14 +00:00
First commit
This commit is contained in:
23
DiscordAPI/IO/Handshake.cs
Normal file
23
DiscordAPI/IO/Handshake.cs
Normal file
@ -0,0 +1,23 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user