Browse Source

Confirmed working now

pull/58/head
Khionu Terabite 9 years ago
parent
commit
234185b603
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      src/Discord.Net.Net45/Models/Game.cs

+ 6
- 1
src/Discord.Net.Net45/Models/Game.cs View File

@@ -1,9 +1,14 @@
namespace Discord
using Newtonsoft.Json;

namespace Discord
{
public class GameInfo
{
[JsonProperty("game")]
public string Name { get; set; }
[JsonProperty("url")]
public string Url { get; set; }
[JsonProperty("type")]
public GameType Type { get; set; }
}
}

Loading…
Cancel
Save