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.
23 lines
548 B
23 lines
548 B
|
|
namespace MediaBrowser.Model.Net
|
|
{
|
|
/// <summary>
|
|
/// Class WebSocketMessage
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public class WebSocketMessage<T>
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the type of the message.
|
|
/// </summary>
|
|
/// <value>The type of the message.</value>
|
|
public string MessageType { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the data.
|
|
/// </summary>
|
|
/// <value>The data.</value>
|
|
public T Data { get; set; }
|
|
}
|
|
|
|
}
|