hermes-common-library/Common/WebSocketMessage.cs

13 lines
281 B
C#
Raw Normal View History

2024-06-24 18:28:40 -04:00
using System.Text.Json.Serialization;
namespace CommonSocketLibrary.Common
{
public class WebSocketMessage
{
[JsonPropertyName("op")]
public int OpCode { get; set; }
[JsonPropertyName("d")]
public object? Data { get; set; }
}
}