using System.Reflection; using Connected.Annotations; namespace Connected.Rest; internal class ApiInvokeDescriptor { public Type? Service { get; set; } public MethodInfo? Method { get; set; } public Type[]? Parameters { get; set; } public ServiceMethodVerbs Verbs { get; set; } = ServiceMethodVerbs.None; }