using System.Collections.Generic; using System.Linq; using NzbDrone.Core.CustomFormats; namespace NzbDrone.Core.Notifications.Webhook { public class WebhookCustomFormatInfo { public List CustomFormats { get; set; } public int CustomFormatScore { get; set; } public WebhookCustomFormatInfo(List customFormats, int customFormatScore) { CustomFormats = customFormats.Select(c => new WebhookCustomFormat(c)).ToList(); CustomFormatScore = customFormatScore; } } }