28 lines
723 B
C#
28 lines
723 B
C#
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
|
|
}
|
|
}
|