Files
SabreTools.Matching/MatchSet.cs
2023-11-07 22:22:04 -05:00

20 lines
504 B
C#

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