10 lines
237 B
C#
10 lines
237 B
C#
namespace APCViewer.Models.Stateless.Methods;
|
|
|
|
public interface ITimePivotPage
|
|
{
|
|
|
|
void OnGet(bool is_gaN = false, bool is_Si = false);
|
|
|
|
static string GetRouteName() => nameof(ITimePivotPage).Replace("Page", string.Empty)[1..];
|
|
|
|
} |