ProjectLighthouse/ProjectLighthouse.Servers.Website/Pages/Debug/VersionInfoPage.cshtml.cs
2022-05-14 23:37:55 -04:00

12 lines
No EOL
367 B
C#

using JetBrains.Annotations;
using LBPUnion.ProjectLighthouse.Servers.Website.Pages.Layouts;
using Microsoft.AspNetCore.Mvc;
namespace LBPUnion.ProjectLighthouse.Servers.Website.Pages.Debug;
public class VersionInfoPage : BaseLayout
{
public VersionInfoPage([NotNull] Database database) : base(database)
{}
public IActionResult OnGet() => this.Page();
}