mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-06 21:29:31 +00:00
20 lines
504 B
C#
20 lines
504 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BurnOutSharp.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; }
|
|
}
|
|
} |