17 lines
421 B
C#
17 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
|
|
namespace KanSan.CrossCutting.DataClasses
|
|
{
|
|
public class Baustelle
|
|
{
|
|
public int ID { get; set; }
|
|
public Guid GuidNr { get; set; }
|
|
public Projekt Projekt { get; set; }
|
|
public string OrtTeil { get; set; }
|
|
public string BaustelleNummer { get; set; }
|
|
public List<Sewer> Kanaele { get; } = new List<Sewer>();
|
|
}
|
|
}
|