JsonElement instead of Request body Attachment Class Bump Ready to test GetLastGroupIdWithValue Changed to v4
17 lines
360 B
C#
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);
|
|
|
|
} |