Advertisement
Guest User

XSD file

a guest
Aug 7th, 2011
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.97 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // ...
  4. // </auto-generated>
  5. //------------------------------------------------------------------------------
  6.  
  7. using System.Xml.Serialization;
  8.  
  9. //
  10. // This source code was auto-generated by xsd, Version=2.0.50727.3038.
  11. //
  12.  
  13.  
  14. /// <observações/>
  15. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
  16. [System.SerializableAttribute()]
  17. [System.Diagnostics.DebuggerStepThroughAttribute()]
  18. [System.ComponentModel.DesignerCategoryAttribute("code")]
  19. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  20. [System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
  21. public partial class GPA {
  22.    
  23.     private GPASemestre[] semestreField;
  24.    
  25.     /// <observações/>
  26.     [System.Xml.Serialization.XmlElementAttribute("Semestre")]
  27.     public GPASemestre[] Semestre {
  28.         get {
  29.             return this.semestreField;
  30.         }
  31.         set {
  32.             this.semestreField = value;
  33.         }
  34.     }
  35. }
  36.  
  37. /// <observações/>
  38. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
  39. [System.SerializableAttribute()]
  40. [System.Diagnostics.DebuggerStepThroughAttribute()]
  41. [System.ComponentModel.DesignerCategoryAttribute("code")]
  42. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  43. public partial class GPASemestre {
  44.    
  45.     private string nomeField;
  46.    
  47.     private GPASemestreCadeira[] cadeirasField;
  48.    
  49.     /// <observações/>
  50.     public string Nome {
  51.         get {
  52.             return this.nomeField;
  53.         }
  54.         set {
  55.             this.nomeField = value;
  56.         }
  57.     }
  58.    
  59.     /// <observações/>
  60.     [System.Xml.Serialization.XmlArrayItemAttribute("Cadeira", IsNullable=false)]
  61.     public GPASemestreCadeira[] Cadeiras {
  62.         get {
  63.             return this.cadeirasField;
  64.         }
  65.         set {
  66.             this.cadeirasField = value;
  67.         }
  68.     }
  69. }
  70.  
  71. /// <observações/>
  72. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
  73. [System.SerializableAttribute()]
  74. [System.Diagnostics.DebuggerStepThroughAttribute()]
  75. [System.ComponentModel.DesignerCategoryAttribute("code")]
  76. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  77. public partial class GPASemestreCadeira {
  78.    
  79.     private bool activaField;
  80.    
  81.     private string nomeField;
  82.    
  83.     private float notaField;
  84.    
  85.     /// <observações/>
  86.     public bool Activa {
  87.         get {
  88.             return this.activaField;
  89.         }
  90.         set {
  91.             this.activaField = value;
  92.         }
  93.     }
  94.    
  95.     /// <observações/>
  96.     public string Nome {
  97.         get {
  98.             return this.nomeField;
  99.         }
  100.         set {
  101.             this.nomeField = value;
  102.         }
  103.     }
  104.    
  105.     /// <observações/>
  106.     public float Nota {
  107.         get {
  108.             return this.notaField;
  109.         }
  110.         set {
  111.             this.notaField = value;
  112.         }
  113.     }
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement