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.
25 lines
844 B
25 lines
844 B
using System.ComponentModel;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Inbound;
|
|
|
|
/// <summary>
|
|
/// Scheduled tasks info start message.
|
|
/// Data is the timing data encoded as "$initialDelay,$interval" in ms.
|
|
/// </summary>
|
|
public class ScheduledTasksInfoStartMessage : InboundWebSocketMessage<string>
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ScheduledTasksInfoStartMessage"/> class.
|
|
/// </summary>
|
|
/// <param name="data">The timing data encoded as $initialDelay,$interval.</param>
|
|
public ScheduledTasksInfoStartMessage(string data)
|
|
: base(data)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.ScheduledTasksInfoStart)]
|
|
public override SessionMessageType MessageType => SessionMessageType.ScheduledTasksInfoStart;
|
|
}
|