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.
26 lines
876 B
26 lines
876 B
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using MediaBrowser.Model.Session;
|
|
using MediaBrowser.Model.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Inbound;
|
|
|
|
/// <summary>
|
|
/// Scheduled tasks info start message.
|
|
/// </summary>
|
|
public class ScheduledTasksInfoStartMessage : WebSocketMessage<IReadOnlyCollection<TaskInfo>>, IInboundWebSocketMessage
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ScheduledTasksInfoStartMessage"/> class.
|
|
/// </summary>
|
|
/// <param name="data">Collection of task info.</param>
|
|
public ScheduledTasksInfoStartMessage(IReadOnlyCollection<TaskInfo> data)
|
|
: base(data)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.ScheduledTasksInfoStart)]
|
|
public override SessionMessageType MessageType => SessionMessageType.ScheduledTasksInfoStart;
|
|
}
|