mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
15 lines
420 B
C#
15 lines
420 B
C#
|
|
using System.ComponentModel;
|
||
|
|
using MediaBrowser.Model.Session;
|
||
|
|
|
||
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Keep alive websocket messages.
|
||
|
|
/// </summary>
|
||
|
|
public class OutboundKeepAliveMessage : OutboundWebSocketMessage
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
[DefaultValue(SessionMessageType.KeepAlive)]
|
||
|
|
public override SessionMessageType MessageType => SessionMessageType.KeepAlive;
|
||
|
|
}
|