Add project files.

This commit is contained in:
clive
2024-05-19 13:15:53 +10:00
parent 13f3232ddf
commit 52e53d9c07
80 changed files with 74497 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace plushealthtech.Pages
{
public class IndexModel : PageModel
{
private readonly ILogger<IndexModel> _logger;
public IndexModel(ILogger<IndexModel> logger)
{
_logger = logger;
}
public void OnGet()
{
}
}
}