Grundlegene Funktionen geschrieben
This commit is contained in:
24
dcnsanplanung.shared/Model/Haltung.cs
Normal file
24
dcnsanplanung.shared/Model/Haltung.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace dcnsanplanung.shared.Model
|
||||
{
|
||||
public class Haltung : DBObjekt
|
||||
{
|
||||
public Guid Ref_Projekt_Guid;
|
||||
public string Objektbezeichnung { get; set; } = "";
|
||||
public uint Bewertungklasse { get; set; }
|
||||
public List<Schaden> Kodierungen = new List<Schaden>();
|
||||
}
|
||||
|
||||
public class Schaden : DBObjekt
|
||||
{
|
||||
public Guid Ref_Haltung_Guid;
|
||||
public decimal Entfernung;
|
||||
public string Kodierung = "";
|
||||
public uint Schadensklasse;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user