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