using System.Collections.Generic; namespace BurnOutSharp.Matching { /// /// Wrapper for a single set of matching criteria /// public abstract class MatchSet where T : IMatch { /// /// Set of all matchers /// public IEnumerable Matchers { get; set; } /// /// Name of the protection to show /// public string ProtectionName { get; set; } } }