AzureDevOpsRepository Markdown links Ticks bug fix, default to *.wc files and formatting
16 lines
262 B
C#
16 lines
262 B
C#
namespace OI.Metrology.Shared.Models.Stateless;
|
|
|
|
public interface IAzureDevOpsController<T>
|
|
{
|
|
|
|
enum Action : int
|
|
{
|
|
Index = 0,
|
|
Save = 1
|
|
}
|
|
|
|
static string GetRouteName() => nameof(IAzureDevOpsController<T>)[1..^10];
|
|
|
|
T Save();
|
|
|
|
} |