Initial commit
This commit is contained in:
20
KlassenBIB/Projekt.cs
Normal file
20
KlassenBIB/Projekt.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user