mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-09-22 06:36:01 +00:00
14 lines
305 B
C#
14 lines
305 B
C#
namespace SabreTools.Matching
|
|
{
|
|
/// <summary>
|
|
/// Represents a matcher for a particular type
|
|
/// </summary>
|
|
public interface IMatch<TNeedle>
|
|
{
|
|
/// <summary>
|
|
/// Nullable typed data to be matched
|
|
/// </summary>
|
|
public TNeedle? Needle { get; }
|
|
}
|
|
}
|