rtmpdash/Pages/profile.cshtml.cs
2021-01-24 04:04:16 +01:00

11 lines
214 B
C#

using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RTMPDash.Pages {
public class ProfileModel : PageModel {
public new string User { get; set; }
public void OnGet(string user) {
User = user;
}
}
}