Concrete class prototype
This commit is contained in:
14
src/Discord.Net.WebSocket/API/Gateway/StatusUpdateParams.cs
Normal file
14
src/Discord.Net.WebSocket/API/Gateway/StatusUpdateParams.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma warning disable CS1591
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Discord.API.Gateway
|
||||
{
|
||||
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
|
||||
public class StatusUpdateParams
|
||||
{
|
||||
[JsonProperty("idle_since"), Int53]
|
||||
public long? IdleSince { get; set; }
|
||||
[JsonProperty("game")]
|
||||
public Game Game { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user