mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
15 lines
347 B
C#
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);
|
|
}
|
|
}
|