Bewertungssystem angefangen

This commit is contained in:
2023-09-11 20:39:23 +02:00
parent f41cfff5c0
commit 560ac6246b
32 changed files with 9504 additions and 51 deletions

View File

@@ -0,0 +1,24 @@
namespace dcnsanplanung.shared.Model
{
public class Schaden : DBObjekt
{
public Guid Ref_Haltung_Guid { get; set; }
public decimal Entfernung { get; set; }
public string Hauptcode { get; set; } = string.Empty;
public string CH1 { get; set; } = string.Empty;
public string CH2 { get; set; } = string.Empty;
public string Q1 { get; set; } = string.Empty;
public string Q2 { get; set; } = string.Empty;
public uint Schadensklasse { get; set; }
public uint KD { get; set; }
public uint KS { get; set; }
public uint KB { get; set; }
public List<Sanierungsvorgabe> Sanierungsvorgaben { get; set; }
}
public class Sanierungsvorgabe
{
public string Vorgabe { get; set; } = "";
}
}