Renamed WebSocketMessage -> SocketFrame

This commit is contained in:
RogueException
2016-10-07 17:24:16 -03:00
parent 81a0c12f48
commit cabf567359
3 changed files with 7 additions and 7 deletions

View File

@@ -1,17 +0,0 @@
#pragma warning disable CS1591
using Newtonsoft.Json;
namespace Discord.API
{
public class WebSocketMessage
{
[JsonProperty("op")]
public int Operation { get; set; }
[JsonProperty("t", NullValueHandling = NullValueHandling.Ignore)]
public string Type { get; set; }
[JsonProperty("s", NullValueHandling = NullValueHandling.Ignore)]
public int? Sequence { get; set; }
[JsonProperty("d")]
public object Payload { get; set; }
}
}