Model geupdated

This commit is contained in:
HuskyTeufel
2021-10-06 19:52:32 +02:00
parent b48c012c18
commit cae9f38227
21 changed files with 1104 additions and 55 deletions

View File

@@ -7,7 +7,9 @@ namespace DaSaSo.Domain.Model
public class SewerObject : DomainObject
{
public Buildingsite BuildingSite { get; set; }
public string SanNummer { get; set; }
public string StreetName { get; set; }
public string Hausnummer { get; set; }
public string ObjektName { get; set; }
public SewerPoint PunktOben { get; set; }
public EPointType PunktObenType { get; set; }
@@ -28,6 +30,8 @@ namespace DaSaSo.Domain.Model
[NotMapped]
public bool IsSelected { get; set; }
[NotMapped]
public bool IsChanged { get; set; } = false;
}
}