Güteschutzprotokolle hinzugefügt

This commit is contained in:
Husky
2020-03-16 19:48:55 +01:00
parent 47beb8b598
commit 009c54cc84
14 changed files with 1230 additions and 7 deletions

View File

@@ -0,0 +1,28 @@
using KanSan.Base.Interfaces;
using System;
using System.Collections.Generic;
using System.Text;
namespace KanSan.Base.Models
{
public abstract class GueteschutzProtokoll : IDatabaseEntry
{
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
}
}