13 lines
479 B
C#
13 lines
479 B
C#
|
|
namespace DotNetDDI.Integrations.PowerDns;
|
||
|
|
|
||
|
|
public interface IMethod;
|
||
|
|
|
||
|
|
public record MethodBase(string Method);
|
||
|
|
|
||
|
|
public record Method<TParam>(string Method, TParam Parameters) : MethodBase(Method)
|
||
|
|
where TParam : MethodParameters;
|
||
|
|
|
||
|
|
public record InitializeMethod(InitializeParameters Parameters) : Method<InitializeParameters>("initialize", Parameters), IMethod;
|
||
|
|
|
||
|
|
public record LookupMethod(LookupParameters Parameters) : Method<LookupParameters>("lookup", Parameters), IMethod;
|