Advertisement
Guest User

Untitled

a guest
May 25th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.71 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace Categories
  7. {
  8.     //------------------------------------------------------------------------------
  9.     // <auto-generated>
  10.     //     This code was generated by a tool.
  11.     //     Runtime Version:4.0.30319.1
  12.     //
  13.     //     Changes to this file may cause incorrect behavior and will be lost if
  14.     //     the code is regenerated.
  15.     // </auto-generated>
  16.     //------------------------------------------------------------------------------
  17.  
  18.     using System.Xml.Serialization;
  19.  
  20.     //
  21.     // This source code was auto-generated by xsd, Version=4.0.30319.1.
  22.     //
  23.  
  24.  
  25.     /// <remarks/>
  26.     [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.1")]
  27.     [System.SerializableAttribute()]
  28.     [System.Diagnostics.DebuggerStepThroughAttribute()]
  29.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  30.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  31.     [System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
  32.     public partial class Categories
  33.     {
  34.  
  35.         private CategoriesCategory[] itemsField;
  36.  
  37.         /// <remarks/>
  38.         [System.Xml.Serialization.XmlElementAttribute("Category", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  39.         public CategoriesCategory[] Items
  40.         {
  41.             get
  42.             {
  43.                 return this.itemsField;
  44.             }
  45.             set
  46.             {
  47.                 this.itemsField = value;
  48.             }
  49.         }
  50.     }
  51.  
  52.     /// <remarks/>
  53.     [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.1")]
  54.     [System.SerializableAttribute()]
  55.     [System.Diagnostics.DebuggerStepThroughAttribute()]
  56.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  57.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  58.     public partial class CategoriesCategory
  59.     {
  60.  
  61.         private string idField;
  62.  
  63.         private string nameField;
  64.  
  65.         private string sort_indexField;
  66.  
  67.         private string imageField;
  68.  
  69.         private string subcatField;
  70.  
  71.         private string parent_catField;
  72.  
  73.         private string sub_sortField;
  74.  
  75.         /// <remarks/>
  76.         [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  77.         public string id
  78.         {
  79.             get
  80.             {
  81.                 return this.idField;
  82.             }
  83.             set
  84.             {
  85.                 this.idField = value;
  86.             }
  87.         }
  88.  
  89.         /// <remarks/>
  90.         [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  91.         public string name
  92.         {
  93.             get
  94.             {
  95.                 return this.nameField;
  96.             }
  97.             set
  98.             {
  99.                 this.nameField = value;
  100.             }
  101.         }
  102.  
  103.         /// <remarks/>
  104.         [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  105.         public string sort_index
  106.         {
  107.             get
  108.             {
  109.                 return this.sort_indexField;
  110.             }
  111.             set
  112.             {
  113.                 this.sort_indexField = value;
  114.             }
  115.         }
  116.  
  117.         /// <remarks/>
  118.         [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  119.         public string image
  120.         {
  121.             get
  122.             {
  123.                 return this.imageField;
  124.             }
  125.             set
  126.             {
  127.                 this.imageField = value;
  128.             }
  129.         }
  130.  
  131.         /// <remarks/>
  132.         [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  133.         public string subcat
  134.         {
  135.             get
  136.             {
  137.                 return this.subcatField;
  138.             }
  139.             set
  140.             {
  141.                 this.subcatField = value;
  142.             }
  143.         }
  144.  
  145.         /// <remarks/>
  146.         [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  147.         public string parent_cat
  148.         {
  149.             get
  150.             {
  151.                 return this.parent_catField;
  152.             }
  153.             set
  154.             {
  155.                 this.parent_catField = value;
  156.             }
  157.         }
  158.  
  159.         /// <remarks/>
  160.         [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  161.         public string sub_sort
  162.         {
  163.             get
  164.             {
  165.                 return this.sub_sortField;
  166.             }
  167.             set
  168.             {
  169.                 this.sub_sortField = value;
  170.             }
  171.         }
  172.     }
  173.  
  174. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement