Files
Kanalsanierungsverwaltung/KlassenBIB/Inspektionskuerzeln.cs
2018-05-16 17:24:22 +02:00

24 lines
747 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
public class Inspektionskuerzeln
{
public string Hauptkode { get; set; }
public string Charakterisierung1 { get; set; }
public string Charakterisierung2 { get; set; }
public uint Quantifizierung1 { get; set; }
public uint Quantifizierung2 { get; set; }
public uint LageAmUmfangStart { get; set; }
public uint LageAmUmfangEnde { get; set; }
public bool ImVerbindung { get; set; }
public string FotoReferenz { get; set; }
public string VideoReferenz { get; set; }
public string Anmerkung { get; set; }
}
}