Files
Prowlarr/src/NzbDrone.Core/CustomFormats/CustomFormatMatchResult.cs
T
2020-01-23 20:28:55 +00:00

15 lines
347 B
C#

using System.Collections.Generic;
using System.Linq;
namespace NzbDrone.Core.CustomFormats
{
public class CustomFormatMatchResult
{
public CustomFormat CustomFormat { get; set; }
public List<FormatTagMatchesGroup> GroupMatches { get; set; }
public bool GoodMatch => GroupMatches.All(g => g.DidMatch);
}
}