oi-metrology/Shared/Models/Stateless/IInboundController.cs
Mike Phares 6317c385f6 Separated Wafer-Counter
JsonElement instead of Request body
Attachment Class
Bump
Ready to test GetLastGroupIdWithValue
Changed to v4
2024-05-21 12:40:20 -07:00

17 lines
360 B
C#

using System.Text.Json;
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, JsonElement? jsonElement);
T AttachFile(string tooltype, Attachment? attachment);
}