mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
12 lines
No EOL
367 B
C#
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();
|
|
} |