15 lines
297 B
C#
15 lines
297 B
C#
namespace OI.Metrology.Shared.Models.Stateless;
|
|
|
|
public interface IPinController<T>
|
|
{
|
|
|
|
enum Action : int
|
|
{
|
|
Index = 0,
|
|
MarkAsPinned = 1
|
|
}
|
|
|
|
static string GetRouteName() => nameof(IPinController<T>)[1..^10];
|
|
T MarkAsPinned(DataModels.HeaderCommon headerCommon);
|
|
|
|
} |