mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
b5bbb98175
* Further split inbound and outbound messages * Fix datatype for inbound start messages * fixes from review
15 lines
411 B
C#
15 lines
411 B
C#
using System.ComponentModel;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Inbound;
|
|
|
|
/// <summary>
|
|
/// Sessions stop message.
|
|
/// </summary>
|
|
public class SessionsStopMessage : InboundWebSocketMessage
|
|
{
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.SessionsStop)]
|
|
public override SessionMessageType MessageType => SessionMessageType.SessionsStop;
|
|
}
|