namespace MoonlightServers.ApiServer.Database.Entities; public class Node { public int Id { get; set; } // Relations public List Servers { get; set; } = new(); public List Allocations { get; set; } = new(); // Meta public string Name { get; set; } // Connection details public string Fqdn { get; set; } public string Token { get; set; } public string TokenId { get; set; } public int HttpPort { get; set; } public int FtpPort { get; set; } public bool UseSsl { get; set; } }