using System.Collections.Generic; using System.Xml.Schema; using System.Xml.Serialization; namespace GCHR.Model.Konto { public class Konten { [XmlAttribute(AttributeName = "noNamespaceSchemaLocation", Namespace = XmlSchema.InstanceNamespace)] public string NoNamespaceSchemaLocation = "http://dev.global-cube.de/GCHR.Konten.xsd"; [XmlElement("Konto")] public List Kontenliste = new List(); } }