mirror of
https://github.com/yawaflua/oembed-tests.yawaflua.ru.git
synced 2025-12-08 19:39:29 +02:00
15 lines
302 B
C#
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;
|
|
}
|
|
}
|
|
}
|