Files
Servers/MoonlightServers.Shared/Http/Responses/Admin/Nodes/DetailNodeResponse.cs
2024-08-30 15:25:34 +02:00

11 lines
283 B
C#

namespace MoonlightServers.Shared.Http.Responses.Admin.Nodes;
public class DetailNodeResponse
{
public int Id { get; set; }
public string Name { get; set; }
public string Fqdn { get; set; }
public int ApiPort { get; set; }
public bool SslEnabled { get; set; }
}