Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- // Runtime Version:4.0.30319.42000
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- using System.Xml.Serialization;
- //
- // This source code was auto-generated by xsd, Version=4.6.1055.0.
- //
- /// <remarks/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
- [System.SerializableAttribute()]
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlRootAttribute("Catalogo", Namespace="", IsNullable=true)]
- public partial class CatalogoProducto {
- private string nombreField;
- private System.DateTime fechaExpiracionField;
- private Producto[] productosField;
- /// <remarks/>
- public string Nombre {
- get {
- return this.nombreField;
- }
- set {
- this.nombreField = value;
- }
- }
- /// <remarks/>
- [System.Xml.Serialization.XmlElementAttribute(DataType="date")]
- public System.DateTime FechaExpiracion {
- get {
- return this.fechaExpiracionField;
- }
- set {
- this.fechaExpiracionField = value;
- }
- }
- /// <remarks/>
- public Producto[] Productos {
- get {
- return this.productosField;
- }
- set {
- this.productosField = value;
- }
- }
- }
- /// <remarks/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
- [System.SerializableAttribute()]
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=true)]
- public partial class Producto {
- private string nombreProductoField;
- private string descripciónField;
- private decimal precioField;
- private bool disponibleField;
- private string idField;
- /// <remarks/>
- public string NombreProducto {
- get {
- return this.nombreProductoField;
- }
- set {
- this.nombreProductoField = value;
- }
- }
- /// <remarks/>
- public string Descripción {
- get {
- return this.descripciónField;
- }
- set {
- this.descripciónField = value;
- }
- }
- /// <remarks/>
- public decimal Precio {
- get {
- return this.precioField;
- }
- set {
- this.precioField = value;
- }
- }
- /// <remarks/>
- public bool Disponible {
- get {
- return this.disponibleField;
- }
- set {
- this.disponibleField = value;
- }
- }
- /// <remarks/>
- [System.Xml.Serialization.XmlAttributeAttribute(DataType="integer")]
- public string ID {
- get {
- return this.idField;
- }
- set {
- this.idField = value;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement