Serializer weiter ausgebaut

This commit is contained in:
Husky
2018-05-16 18:48:15 +02:00
parent 374eecf21d
commit f19443027e
6 changed files with 32 additions and 45 deletions

View File

@@ -3,18 +3,21 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Markup;
[assembly: XmlnsDefinition("http://schemas.cosysda.de/sanVerwaltung/xaml","KlassenBIB")]
namespace KlassenBIB
{
[ContentProperty("Adressen")]
public class Projekt
{
public string Projektnummer { get; set; }
public string ProjektOrt { get; set; }
public AdresseCollection adressen { get; set; }
public string Nummer { get; set; }
public string Ort { get; set; }
public AdresseCollection Adressen { get; private set; }
public Projekt()
{
adressen = new AdresseCollection();
Adressen = new AdresseCollection();
}
}
}