Корректировка моделей Host, Template

This commit is contained in:
Mikhail Kuznetsov
2023-09-19 10:19:05 +10:00
parent 7a88a7c198
commit 4cde851a33
3 changed files with 17 additions and 14 deletions

View File

@@ -11,14 +11,13 @@ namespace PARR.DAL.Models
public Guid Id { get; set; }
public DateTimeOffset DateCreated { get; set; }
public DateTimeOffset? DateModified { get; set; }
public string? HostName { get; set; }
public string? Ek { get; set; }
public required string IP { get; set; }
//public string? RegionalEK { get; set; }
//public string? LinkEK { get; set; }
public string? Status { get; set; }
public string? WorkGroup { get; set; }
//public string? Responsible { get; set; }
public string? ResponseArea { get; set; }
public ICollection<ApplicationInHost> ApplicationsInHosts { get; set; } = new HashSet<ApplicationInHost>();