22 lines
679 B
C#
22 lines
679 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.Shared.Domain
|
|
{
|
|
public class Kanal : DBObject
|
|
{
|
|
public string Objektbezeichnung { get; set; } = String.Empty;
|
|
public Schacht StartSchacht { get; set; } = new Schacht();
|
|
public Schacht EndSchacht { get; set; } = new Schacht();
|
|
public int DN { get; set; }
|
|
public string Material { get; set; } = String.Empty;
|
|
public decimal Haltungslaenge { get; set; }
|
|
public Projekt Projekt { get; set; } = new Projekt();
|
|
public EEntwaeserung Entwaesserung { get; set; }
|
|
|
|
}
|
|
}
|