namespace AipDatabase.API.Models { public class LinkedSystem { public Int64 rowNum { get; set; } public int system_id { get; set; } public string system_name { get; set; } public string system_desc { get; set; } public string? created_at { get; set; } public int? server_count { get; set; } public LinkedSystem(int systemId, string systemName, string systemDesc) { this.rowNum = 0; this.system_id = systemId; this.system_name = systemName; this.system_desc = systemDesc; } public LinkedSystem(Int64 rowNum, int systemId, string systemName, string systemDesc, string createdAt, int serverCount) { this.rowNum = rowNum; this.system_id = systemId; this.system_name = systemName; this.system_desc = systemDesc; this.created_at = createdAt; this.server_count = serverCount; } } }