21 lines
429 B
C#
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();
|
|
}
|
|
}
|
|
}
|