using System.Collections.Generic;
namespace SabreTools.Matching
{
///
/// Wrapper for a single set of matching criteria
///
public interface IMatchSet where TMatcher : IMatch
{
///
/// Set of all matchers
///
public List Matchers { get; }
///
/// Unique name for the match set
///
public string SetName { get; }
}
}