Add summaries to IMatch

This commit is contained in:
Matt Nadareski
2025-07-23 09:58:46 -04:00
parent 69130a6e9f
commit 6f6d071a79

View File

@@ -1,7 +1,13 @@
namespace SabreTools.Matching
{
/// <summary>
/// Represents a matcher for a particular type
/// </summary>
public interface IMatch<T>
{
/// <summary>
/// Nullable typed data to be matched
/// </summary>
T? Needle { get; }
}
}