Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //------------------------------------------------------------------------------
- // <auto-generated>
- // ...
- // </auto-generated>
- //------------------------------------------------------------------------------
- using System.Xml.Serialization;
- //
- // This source code was auto-generated by xsd, Version=2.0.50727.3038.
- //
- /// <observações/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
- [System.SerializableAttribute()]
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
- [System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
- public partial class GPA {
- private GPASemestre[] semestreField;
- /// <observações/>
- [System.Xml.Serialization.XmlElementAttribute("Semestre")]
- public GPASemestre[] Semestre {
- get {
- return this.semestreField;
- }
- set {
- this.semestreField = value;
- }
- }
- }
- /// <observações/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
- [System.SerializableAttribute()]
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
- public partial class GPASemestre {
- private string nomeField;
- private GPASemestreCadeira[] cadeirasField;
- /// <observações/>
- public string Nome {
- get {
- return this.nomeField;
- }
- set {
- this.nomeField = value;
- }
- }
- /// <observações/>
- [System.Xml.Serialization.XmlArrayItemAttribute("Cadeira", IsNullable=false)]
- public GPASemestreCadeira[] Cadeiras {
- get {
- return this.cadeirasField;
- }
- set {
- this.cadeirasField = value;
- }
- }
- }
- /// <observações/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
- [System.SerializableAttribute()]
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
- public partial class GPASemestreCadeira {
- private bool activaField;
- private string nomeField;
- private float notaField;
- /// <observações/>
- public bool Activa {
- get {
- return this.activaField;
- }
- set {
- this.activaField = value;
- }
- }
- /// <observações/>
- public string Nome {
- get {
- return this.nomeField;
- }
- set {
- this.nomeField = value;
- }
- }
- /// <observações/>
- public float Nota {
- get {
- return this.notaField;
- }
- set {
- this.notaField = value;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement