Files
Readarr/src/NzbDrone.Core/Notifications/Webhook/WebhookRelease.cs
2023-02-03 21:11:54 -06:00

36 lines
1.2 KiB
C#

using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.Qualities;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookRelease
{
public WebhookRelease()
{
}
public WebhookRelease(QualityModel quality, RemoteBook remoteBook)
{
Quality = quality.Quality.Name;
QualityVersion = quality.Revision.Version;
ReleaseGroup = remoteBook.ParsedBookInfo.ReleaseGroup;
ReleaseTitle = remoteBook.Release.Title;
Indexer = remoteBook.Release.Indexer;
Size = remoteBook.Release.Size;
CustomFormats = remoteBook.CustomFormats?.Select(x => x.Name).ToList();
CustomFormatScore = remoteBook.CustomFormatScore;
}
public string Quality { get; set; }
public int QualityVersion { get; set; }
public string ReleaseGroup { get; set; }
public string ReleaseTitle { get; set; }
public string Indexer { get; set; }
public long Size { get; set; }
public int CustomFormatScore { get; set; }
public List<string> CustomFormats { get; set; }
}
}