This commit is contained in:
Janus C. H. Knudsen 2026-01-30 22:56:31 +01:00
parent 0015585819
commit b778d91196
88 changed files with 84184 additions and 0 deletions

20
Pages/Index.cshtml.cs Normal file
View file

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