29 lines
757 B
C#
29 lines
757 B
C#
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
|
|
}
|
|
}
|