32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
using KanSan.Base.Enums;
|
|
using KanSan.Base.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace KanSan.Base.Models
|
|
{
|
|
public class Sewer : IDatabaseEntry
|
|
{
|
|
public int ID { get; set; }
|
|
public Guid GuidNr { get; set; }
|
|
public Baustelle Baustelle { get; set; }
|
|
public string StrasseName { get; set; }
|
|
public string ObjektNummer { get; set; }
|
|
public EPunktType SewerType { get; set; }
|
|
public EPunktType PunktTypeOben { get; set; }
|
|
public SewerPoint PunktOben { get; set; }
|
|
public EPunktType PunktTypeUnten { get; set; }
|
|
public SewerPoint PunktUnten { get; set; }
|
|
public int DN { get; set; }
|
|
public EMaterial Material { get; set; }
|
|
public bool RohrleitungInBetrieb { get; set; }
|
|
public bool HaltungGespuelt { get; set; }
|
|
public bool WasserHaltungDurchgefuehrt { get; set; }
|
|
public bool GenehmigungErforderlich { get; set; }
|
|
public bool BaustellensicherungErforderlich { get; set; }
|
|
|
|
|
|
public List<Schaeden> Schaeden { get; } = new List<Schaeden>();
|
|
}
|
|
}
|