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