using System.Text.Json; namespace OI.Metrology.Shared.Models.Stateless; public interface IInboundController { enum Action : int { Index = 0 } static string GetRouteName() => nameof(IInboundController)[1..^10]; T Post(string tooltype, JsonElement? jsonElement); T AttachFile(string tooltype, Attachment? attachment); }