23 lines
669 B
C#
23 lines
669 B
C#
using Shared.Enum;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.Domain
|
|
{
|
|
public class Projekt : DBObject
|
|
{
|
|
public string Projektname { get; set; }
|
|
public string Erstelldatum { get; set; }
|
|
public string Strasse { get;set; }
|
|
public string Ort { get; set; }
|
|
public Auftraggeber Auftraggeber { get; set; }
|
|
public EExportType ExportType { get; set; }
|
|
public EKodierungssystem Kodierungssystem { get; set; }
|
|
public IList<Kanal> Kanaele { get; set; }
|
|
public IList<Schacht> Schaechte { get; set;}
|
|
}
|
|
}
|