24 lines
829 B
C#
24 lines
829 B
C#
|
|
using SewerStammGen.Shared.Enum;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.Shared.Domain
|
|
{
|
|
public class Projekt : DBObject
|
|
{
|
|
public string Projektname { get; set; } = String.Empty;
|
|
public string Erstelldatum { get; set; } = String.Empty;
|
|
public string Strasse { get; set; } = String.Empty;
|
|
public string Ort { get; set; } = String.Empty;
|
|
public Auftraggeber Auftraggeber { get; set; } = new Auftraggeber();
|
|
public EExportType ExportType { get; set; }
|
|
public EKodierungssystem Kodierungssystem { get; set; }
|
|
public IList<Kanal> Kanaele { get; set; } = new List<Kanal>();
|
|
public IList<Schacht> Schaechte { get; set;} = new List<Schacht>();
|
|
}
|
|
}
|