11 lines
241 B
C#
11 lines
241 B
C#
namespace gregExtractor.Models;
|
|
|
|
public sealed record HookDefinition(
|
|
string Group,
|
|
string Namespace,
|
|
string ClassName,
|
|
string MethodName,
|
|
string ReturnType,
|
|
bool IsVoid,
|
|
IReadOnlyList<HookParameter> Parameters);
|