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