Radarr/src/NzbDrone.Core/Notifications/Webhook/WebhookDownloadStatusMessag...

19 lines
508 B
C#

using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Download.TrackedDownloads;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookDownloadStatusMessage
{
public string Title { get; set; }
public List<string> Messages { get; set; }
public WebhookDownloadStatusMessage(TrackedDownloadStatusMessage statusMessage)
{
Title = statusMessage.Title;
Messages = statusMessage.Messages.ToList();
}
}
}