Files
oembed-tests.yawaflua.ru/MVC/Pay.cshtml.cs
2024-07-08 02:45:58 +03:00

15 lines
302 B
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace OembedTests.MVC
{
public class PayModel : PageModel
{
public string username { get; set; }
public void OnGet(string username)
{
this.username = username;
}
}
}