10 lines
295 B
C#
10 lines
295 B
C#
namespace APCViewer.Models.Stateless.Methods;
|
|
|
|
public interface IBackgroundPage
|
|
{
|
|
|
|
void OnGet(bool? message_clear = null, bool? exceptions_clear = null, bool? set_is_primary_instance = null);
|
|
|
|
static string GetRouteName() => nameof(IBackgroundPage).Replace("Page", string.Empty)[1..];
|
|
|
|
} |