using Newtonsoft.Json; namespace Maki.Structures.Gateway { /// /// Discord Gateway Info structure /// internal struct GatewayInfo { /// /// Gateway WSS URL. /// [JsonProperty("url")] public string Url; /// /// Recommended numbers of shards to with (for bots). /// [JsonProperty("shards")] public int? Shards; } }