Files
BinaryObjectScanner/BinaryObjectScanner.Matching/IMatch.cs

8 lines
120 B
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Matching
{
public interface IMatch<T>
{
T Needle { get; set; }
}
}