rtmpdash/Pages/Profile.cshtml.cs

11 lines
207 B
C#
Raw Normal View History

2021-01-24 04:04:16 +01:00
using Microsoft.AspNetCore.Mvc.RazorPages;
2022-02-09 22:32:17 +01:00
namespace RTMPDash.Pages;
2021-01-24 04:04:16 +01:00
2022-02-09 22:32:17 +01:00
public class ProfileModel : PageModel {
public new string User { get; set; }
public void OnGet(string user) {
User = user;
2021-01-24 04:04:16 +01:00
}
}