24 lines
807 B
C#
24 lines
807 B
C#
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; } = "";
|
|
}
|
|
}
|
|
|