Files
Swarm/DysonNetwork.Shared/Stream/WebSocketPacketEvent.cs

13 lines
326 B
C#

namespace DysonNetwork.Shared.Stream;
public class WebSocketPacketEvent
{
public static string Type => "websocket_msg";
public const string SubjectPrefix = "websocket_";
public Guid AccountId { get; set; }
public string DeviceId { get; set; } = null!;
public byte[] PacketBytes { get; set; } = null!;
}