mirror of
https://github.com/SabreTools/SabreTools.Matching.git
synced 2026-02-12 21:32:19 +00:00
8 lines
107 B
C#
8 lines
107 B
C#
namespace SabreTools.Matching
|
|
{
|
|
public interface IMatch<T>
|
|
{
|
|
T? Needle { get; }
|
|
}
|
|
}
|