Added database entities, started with node crud
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user