Daten um Schachttyp erweitert

Wird aus CSV eingelese
This commit is contained in:
2023-07-24 10:45:22 +02:00
parent 2492f3bfab
commit cea3fc448b
5 changed files with 43 additions and 14 deletions

View File

@@ -19,6 +19,7 @@ namespace SewerStammGen.Shared.Domain
public decimal SohlHoehe { get; set; }
public Projekt Projekt { get; set; } = new Projekt();
public EEntwaeserung Entwaesserung { get; set; }
public ESchachtType SchachtType { get; set; }
public string Vermesser { get; set; } = String.Empty;
public string AufnahmeDatum { get; set; } = String.Empty;
}

View File

@@ -0,0 +1,8 @@
namespace SewerStammGen.Shared.Enum
{
public enum ESchachtType
{
Hauptkanal,
Revisionschacht
}
}