mirror of
https://github.com/SabreTools/SabreTools.Matching.git
synced 2026-02-11 05:35:25 +00:00
20 lines
504 B
C#
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; }
|
|
}
|
|
} |