Files
yaflay.ru/Pages/AdminPanel.cshtml.cs
Дмитрий Шиманский a5d39384ac pooko
2023-12-19 11:57:37 +03:00

15 lines
289 B
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace yaflay.ru.Pages
{
public class AdminPanelModel : PageModel
{
public string? type = null;
public void OnGet(string? type)
{
this.type = type;
}
}
}