Files
Kanalsanierungsverwaltung/KlassenBIB/Projekt.cs
2018-05-16 17:24:22 +02:00

21 lines
429 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
public class Projekt
{
public string Projektnummer { get; set; }
public string ProjektOrt { get; set; }
public AdresseCollection adressen { get; set; }
public Projekt()
{
adressen = new AdresseCollection();
}
}
}