Files
yaflay.ru/Pages/Index.cshtml.cs
Дмитрий Шиманский e2800cfc2e some code review
2023-12-26 13:23:30 +03:00

23 lines
507 B
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace yaflay.ru.Pages
{
public class IndexModel : PageModel
{
private readonly ILogger<IndexModel> _logger;
//public string? uri { get; set; } = null;
public IndexModel(ILogger<IndexModel> logger)
{
_logger = logger;
}
public void OnGet(/**string? uri**/)
{
Page();
//this.uri = uri ?? null;
}
}
}