Archetektur angefangen

This commit is contained in:
HuskyTeufel
2021-01-31 22:15:43 +01:00
parent 9f8e167ce3
commit 7a733b92d2
44 changed files with 564 additions and 67 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace KanSan.CrossCutting.DataClasses
{
public abstract class GueteschutzProtokoll
{
public int ID { get; set; }
public Guid GuidNr { get; set; }
public Schaeden SchadPosition { get; set; }
public EWetter Wetter { get; set; }
public int AussenTemp { get; set; }
public int KanalTemp { get; set; }
public bool Sichtkontrolle { get; set; }
public bool Bericht { get; set; }
public bool Film { get; set; }
public bool Video { get; set; }
public bool Dichtheit { get; set; }
}
public enum EWetter
{
TROCKEN,
FEUCHT
}
}