mirror of
https://github.com/yawaflua/yaflay.ru.git
synced 2025-12-09 20:19:32 +02:00
15 lines
291 B
C#
15 lines
291 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace yawaflua.ru.Pages
|
|
{
|
|
public class AdminPanelModel : PageModel
|
|
{
|
|
public string? type = null;
|
|
public void OnGet(string? type)
|
|
{
|
|
this.type = type;
|
|
}
|
|
}
|
|
}
|