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.
Lidarr/src/NzbDrone.Core/Download/TrackedDownloads/TrackedDownloadStatusMessag...

28 lines
702 B

using System.Collections.Generic;
namespace NzbDrone.Core.Download.TrackedDownloads
{
public class TrackedDownloadStatusMessage
{
public string Title { get; set; }
public List<string> Messages { get; set; }
public TrackedDownloadStatusMessage(string title, List<string> messages)
{
Title = title;
Messages = messages;
}
public TrackedDownloadStatusMessage(string title, string message)
{
Title = title;
Messages = new List<string> { message };
}
// Constructor for use when deserializing JSON
public TrackedDownloadStatusMessage()
{
}
}
}