Sewerpoints und Objektnummern hinzugefügt

This commit is contained in:
HuskyTeufel
2021-09-28 17:52:17 +02:00
parent e8674fed2c
commit a8029c091d
27 changed files with 1196 additions and 67 deletions

View File

@@ -9,6 +9,7 @@ namespace DaSaSo.Domain.Model
public class Project : DomainObject
{
public string Name { get; set; }
public string Projektnummer { get; set; }
public Client Client { get; set; }
public ICollection<Buildingsite> BuildingSites { get; set; } = new List<Buildingsite>();
}