//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version: 1.0.3705.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ // // This source code was auto-generated by xsd, Version=1.0.3705.0. // using System.Xml.Serialization; /// [System.Xml.Serialization.XmlRootAttribute("bookstore", Namespace="", IsNullable=false)] public class bookstoreType { /// [System.Xml.Serialization.XmlElementAttribute("book")] public bookType[] book; } /// public class bookType { /// public string title; /// public authorName author; /// public System.Decimal price; /// [System.Xml.Serialization.XmlAttributeAttribute()] public string genre; } /// public class authorName { /// [System.Xml.Serialization.XmlElementAttribute("first-name")] public string firstname; /// [System.Xml.Serialization.XmlElementAttribute("last-name")] public string lastname; }