Serializer weiter ausgebaut
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user