mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-06-17 09:39:55 +02:00
8 lines
275 B
C#
8 lines
275 B
C#
using ILogger = Serilog.ILogger;
|
|
|
|
namespace Phantom.Web;
|
|
|
|
public sealed record Configuration(ILogger Logger, string Host, ushort Port, string BasePath, string KeyFolderPath, CancellationToken CancellationToken) {
|
|
public string HttpUrl => "http://" + Host + ":" + Port;
|
|
}
|