You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
778 B
27 lines
778 B
#pragma warning disable SA1649 // File name must equal class name.
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages;
|
|
|
|
/// <summary>
|
|
/// Inbound websocket message with data.
|
|
/// </summary>
|
|
/// <typeparam name="T">The data type.</typeparam>
|
|
public class InboundWebSocketMessage<T> : WebSocketMessage<T>, IInboundWebSocketMessage
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="InboundWebSocketMessage{T}"/> class.
|
|
/// </summary>
|
|
public InboundWebSocketMessage()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="InboundWebSocketMessage{T}"/> class.
|
|
/// </summary>
|
|
/// <param name="data">The data to send.</param>
|
|
protected InboundWebSocketMessage(T data)
|
|
{
|
|
Data = data;
|
|
}
|
|
}
|