Browse Source

Fixed compile bug

tags/docs-0.9
RogueException 9 years ago
parent
commit
321093e0f8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/API/Client/IWebSocketMessage.cs

+ 1
- 1
src/Discord.Net/API/Client/IWebSocketMessage.cs View File

@@ -15,7 +15,7 @@ namespace Discord.API.Client
[JsonProperty("t", NullValueHandling = NullValueHandling.Ignore)] [JsonProperty("t", NullValueHandling = NullValueHandling.Ignore)]
public string Type { get; set; } public string Type { get; set; }
[JsonProperty("s", NullValueHandling = NullValueHandling.Ignore)] [JsonProperty("s", NullValueHandling = NullValueHandling.Ignore)]
public int? Sequence { get; set; }
public uint? Sequence { get; set; }
[JsonProperty("d")] [JsonProperty("d")]
public object Payload { get; set; } public object Payload { get; set; }




Loading…
Cancel
Save