19 lines
612 B
C#
19 lines
612 B
C#
// <copyright file="ScheduledTasksInfoStopMessage.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
using System.ComponentModel;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Inbound;
|
|
|
|
/// <summary>
|
|
/// Scheduled tasks info stop message.
|
|
/// </summary>
|
|
public class ScheduledTasksInfoStopMessage : InboundWebSocketMessage
|
|
{
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.ScheduledTasksInfoStop)]
|
|
public override SessionMessageType MessageType => SessionMessageType.ScheduledTasksInfoStop;
|
|
}
|