mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
* Further split inbound and outbound messages * Fix datatype for inbound start messages * fixes from review
15 lines
339 B
C#
15 lines
339 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages;
|
|
|
|
/// <summary>
|
|
/// Outbound websocket message.
|
|
/// </summary>
|
|
public class OutboundWebSocketMessage : WebSocketMessage, IOutboundWebSocketMessage
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the message id.
|
|
/// </summary>
|
|
public Guid MessageId { get; set; }
|
|
}
|