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/Notifications/Webhook/WebhookRelease.cs

36 lines
1.2 KiB

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, RemoteAlbum remoteAlbum)
{
Quality = quality.Quality.Name;
QualityVersion = quality.Revision.Version;
ReleaseGroup = remoteAlbum.ParsedAlbumInfo.ReleaseGroup;
ReleaseTitle = remoteAlbum.Release.Title;
Indexer = remoteAlbum.Release.Indexer;
Size = remoteAlbum.Release.Size;
CustomFormats = remoteAlbum.CustomFormats?.Select(x => x.Name).ToList();
CustomFormatScore = remoteAlbum.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; }
}
}