15 lines
358 B
C#
15 lines
358 B
C#
#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; }
|
|
}
|
|
}
|