mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-12 21:02:27 +00:00
Refactor Database into DatabaseContext Moved into separate folder so it actually has a namespace instead sitting in the root
13 lines
No EOL
374 B
C#
13 lines
No EOL
374 B
C#
using LBPUnion.ProjectLighthouse.Database;
|
|
using LBPUnion.ProjectLighthouse.Servers.Website.Pages.Layouts;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Servers.Website.Pages.Errors;
|
|
|
|
public class NotFoundPage : BaseLayout
|
|
{
|
|
public NotFoundPage(DatabaseContext database) : base(database)
|
|
{}
|
|
|
|
public IActionResult OnGet() => this.Page();
|
|
} |