Initial commit

This commit is contained in:
Husky
2018-05-16 17:24:22 +02:00
parent cb42b4e98a
commit 374eecf21d
17 changed files with 567 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
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; }
}
}