Advertisement
Guest User

Untitled

a guest
Jan 27th, 2016
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.35 KB | None | 0 0
  1. namespace XmlPolishWords
  2. {
  3.     /// <remarks/>
  4.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  5.     [System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
  6.     public partial class ramowka
  7.     {
  8.  
  9.         private ramowkaDzien[] dzienField;
  10.  
  11.         /// <remarks/>
  12.         [System.Xml.Serialization.XmlElementAttribute("dzien")]
  13.         public ramowkaDzien[] dzien
  14.         {
  15.             get
  16.             {
  17.                 return this.dzienField;
  18.             }
  19.             set
  20.             {
  21.                 this.dzienField = value;
  22.             }
  23.         }
  24.     }
  25.  
  26.     /// <remarks/>
  27.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  28.     public partial class ramowkaDzien
  29.     {
  30.  
  31.         private ramowkaDzienAudycja[] audycjaField;
  32.  
  33.         private string nameField;
  34.  
  35.         private byte countField;
  36.  
  37.         /// <remarks/>
  38.         [System.Xml.Serialization.XmlElementAttribute("audycja")]
  39.         public ramowkaDzienAudycja[] audycja
  40.         {
  41.             get
  42.             {
  43.                 return this.audycjaField;
  44.             }
  45.             set
  46.             {
  47.                 this.audycjaField = value;
  48.             }
  49.         }
  50.  
  51.         /// <remarks/>
  52.         [System.Xml.Serialization.XmlAttributeAttribute()]
  53.         public string name
  54.         {
  55.             get
  56.             {
  57.                 return this.nameField;
  58.             }
  59.             set
  60.             {
  61.                 this.nameField = value;
  62.             }
  63.         }
  64.  
  65.         /// <remarks/>
  66.         [System.Xml.Serialization.XmlAttributeAttribute()]
  67.         public byte count
  68.         {
  69.             get
  70.             {
  71.                 return this.countField;
  72.             }
  73.             set
  74.             {
  75.                 this.countField = value;
  76.             }
  77.         }
  78.     }
  79.  
  80.     /// <remarks/>
  81.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  82.     public partial class ramowkaDzienAudycja
  83.     {
  84.  
  85.         private string nameField;
  86.  
  87.         private string authorField;
  88.  
  89.         private string timeField;
  90.  
  91.         private byte isGoingField;
  92.  
  93.         /// <remarks/>
  94.         [System.Xml.Serialization.XmlAttributeAttribute()]
  95.         public string name
  96.         {
  97.             get
  98.             {
  99.                 return this.nameField;
  100.             }
  101.             set
  102.             {
  103.                 this.nameField = value;
  104.             }
  105.         }
  106.  
  107.         /// <remarks/>
  108.         [System.Xml.Serialization.XmlAttributeAttribute()]
  109.         public string author
  110.         {
  111.             get
  112.             {
  113.                 return this.authorField;
  114.             }
  115.             set
  116.             {
  117.                 this.authorField = value;
  118.             }
  119.         }
  120.  
  121.         /// <remarks/>
  122.         [System.Xml.Serialization.XmlAttributeAttribute()]
  123.         public string time
  124.         {
  125.             get
  126.             {
  127.                 return this.timeField;
  128.             }
  129.             set
  130.             {
  131.                 this.timeField = value;
  132.             }
  133.         }
  134.  
  135.         /// <remarks/>
  136.         [System.Xml.Serialization.XmlAttributeAttribute()]
  137.         public byte isGoing
  138.         {
  139.             get
  140.             {
  141.                 return this.isGoingField;
  142.             }
  143.             set
  144.             {
  145.                 this.isGoingField = value;
  146.             }
  147.         }
  148.     }
  149.  
  150. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement