Konten.cs 473 B

123456789101112131415
  1. using System.Collections.Generic;
  2. using System.Xml.Schema;
  3. using System.Xml.Serialization;
  4. namespace GCHR.Model.Konto
  5. {
  6. public class Konten
  7. {
  8. [XmlAttribute(AttributeName = "noNamespaceSchemaLocation", Namespace = XmlSchema.InstanceNamespace)]
  9. public string NoNamespaceSchemaLocation = "http://dev.global-cube.de/GCHR.Konten.xsd";
  10. [XmlElement("Konto")]
  11. public List<HaendlerKonto> Kontenliste = new List<HaendlerKonto>();
  12. }
  13. }