Updated Application model

This commit is contained in:
RogueException
2016-10-07 21:19:04 -03:00
parent e4a3a9e6e2
commit a1fd14fff0
3 changed files with 10 additions and 25 deletions

View File

@@ -1,19 +0,0 @@
#pragma warning disable CS1591
using Newtonsoft.Json;
namespace Discord.API.Rpc
{
public class Application
{
[JsonProperty("description")]
public string Description { get; set; }
[JsonProperty("icon")]
public string Icon { get; set; }
[JsonProperty("id")]
public ulong Id { get; set; }
[JsonProperty("rpc_origins")]
public string[] RpcOrigins { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
}
}