1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00
Files
Radarr/src/NzbDrone.Core/CustomFormats/SpecificationMatchesGroup.cs
T

14 lines
395 B
C#

using System.Collections.Generic;
using System.Linq;
namespace NzbDrone.Core.CustomFormats
{
public class SpecificationMatchesGroup
{
public Dictionary<ICustomFormatSpecification, bool> Matches { get; set; }
public bool DidMatch => !(Matches.Any(m => m.Key.Required && m.Value == false) ||
Matches.All(m => m.Value == false));
}
}