mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-04-21 21:54:13 +00:00
12 lines
176 B
C#
12 lines
176 B
C#
namespace BinaryObjectScanner.Matching
|
|
{
|
|
public interface IMatch<T>
|
|
{
|
|
#if NET48
|
|
T Needle { get; set; }
|
|
#else
|
|
T? Needle { get; init; }
|
|
#endif
|
|
}
|
|
}
|