oi-metrology/Shared/Models/Stateless/IInboundController.cs
2023-03-08 10:04:15 -07:00

15 lines
326 B
C#

namespace OI.Metrology.Shared.Models.Stateless;
public interface IInboundController<T>
{
enum Action : int
{
Index = 0
}
static string GetRouteName() => nameof(IInboundController<T>)[1..^10];
T Post(string tooltype);
T AttachFile(string tooltype, long headerid, string datauniqueid = "");
}