Code cleanup

This commit is contained in:
2023-04-12 22:29:49 +02:00
parent b100eca490
commit 7a036b3404
22 changed files with 184 additions and 183 deletions

View File

@@ -8,13 +8,13 @@ namespace SewerStammGen.Shared.Domain
{
public class Kanal : DBObject
{
public string? Objektbezeichnung { get; set; }
public string Objektbezeichnung { get; set; } = String.Empty;
public Schacht? StartSchacht { get; set; }
public Schacht? EndSchacht { get; set; }
public int DN { get; set; }
public string? Material { get; set; }
public string Material { get; set; } = String.Empty;
public decimal Haltungslaenge { get; set; }
public virtual Projekt? Projekt { get; set; }
public Projekt? Projekt { get; set; }
public EEntwaeserung Entwaesserung { get; set; }
}