namespace Sonex.Data.Messages; public sealed class MessageEventArgs : EventArgs { public MessageEventArgs( string channel, int processId, string rawPayload, Message notification) { Channel = channel; ProcessId = processId; RawPayload = rawPayload; Notification = notification; } public string Channel { get; } public int ProcessId { get; } public string RawPayload { get; } public Message Notification { get; } }