Models hinzugefügt

This commit is contained in:
HuskyTeufel
2021-09-12 20:05:24 +02:00
parent 798870879a
commit 18d552a228
13 changed files with 917 additions and 4 deletions

View File

@@ -1,6 +1,13 @@
namespace DaSaSo.Domain.Model
{
public class SewerObjects
public class SewerObjects : DomainObject
{
public Buildingsite BuildingSite { get; set; }
public string StreetName { get; set; }
public string ObjektName { get; set; }
public string PointFrom { get; set; }
public string PointTo { get; set; }
public int DN { get; set; }
public decimal SewerLength { get; set; }
}
}