Removed duplicate model

This commit is contained in:
RogueException
2016-10-16 00:50:28 -03:00
parent a35d047333
commit 123fc90efc

View File

@@ -1,14 +0,0 @@
#pragma warning disable CS1591
using Newtonsoft.Json;
namespace Discord.API.Gateway
{
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
public class UpdateStatusParams
{
[JsonProperty("idle_since")]
public long? IdleSince { get; set; }
[JsonProperty("game")]
public Game Game { get; set; }
}
}