using Newtonsoft.Json; namespace Maki.Structures.Presences { /// /// Discord API Typing Start event structure /// internal struct TypingStart { /// /// id of the channel /// [JsonProperty("channel_id")] public ulong Channel; /// /// id of the user /// [JsonProperty("user_id")] public ulong User; /// /// unix time (in seconds) of when the user started typing /// [JsonProperty("timestamp")] public int Time; } }