INitial work

This commit is contained in:
Ben Ramey
2022-07-24 22:12:30 -05:00
parent ecc5710048
commit be125ec5df
23 changed files with 3263 additions and 0 deletions

12
Pages/Sample.cshtml.cs Normal file
View File

@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace ForgetMeNot.Web
{
public class SampleModel : PageModel
{
public void OnGet()
{
}
}
}