Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /// <remarks/>
- [System.SerializableAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
- [System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
- public partial class traciClass
- {
- private string nameField;
- private string javadocField;
- private string[] reposField;
- private string commandField;
- private traciClassReadQueries readQueriesField;
- private traciClassChangeStateQueries changeStateQueriesField;
- /// <remarks/>
- public string name
- {
- get
- {
- return this.nameField;
- }
- set
- {
- this.nameField = value;
- }
- }
- /// <remarks/>
- public string javadoc
- {
- get
- {
- return this.javadocField;
- }
- set
- {
- this.javadocField = value;
- }
- }
- /// <remarks/>
- [System.Xml.Serialization.XmlArrayItemAttribute("repo", IsNullable = false)]
- public string[] repos
- {
- get
- {
- return this.reposField;
- }
- set
- {
- this.reposField = value;
- }
- }
- /// <remarks/>
- public string command
- {
- get
- {
- return this.commandField;
- }
- set
- {
- this.commandField = value;
- }
- }
- /// <remarks/>
- public traciClassReadQueries readQueries
- {
- get
- {
- return this.readQueriesField;
- }
- set
- {
- this.readQueriesField = value;
- }
- }
- /// <remarks/>
- public traciClassChangeStateQueries changeStateQueries
- {
- get
- {
- return this.changeStateQueriesField;
- }
- set
- {
- this.changeStateQueriesField = value;
- }
- }
- }
- /// <remarks/>
- [System.SerializableAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
- public partial class traciClassReadQueries
- {
- private traciClassReadQueriesReadQuery readQueryField;
- /// <remarks/>
- public traciClassReadQueriesReadQuery readQuery
- {
- get
- {
- return this.readQueryField;
- }
- set
- {
- this.readQueryField = value;
- }
- }
- }
- /// <remarks/>
- [System.SerializableAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
- public partial class traciClassReadQueriesReadQuery
- {
- private string nameField;
- private string enumField;
- private string constField;
- private string queryField;
- private string returnTypeField;
- private bool dynamicField;
- /// <remarks/>
- public string name
- {
- get
- {
- return this.nameField;
- }
- set
- {
- this.nameField = value;
- }
- }
- /// <remarks/>
- public string @enum
- {
- get
- {
- return this.enumField;
- }
- set
- {
- this.enumField = value;
- }
- }
- /// <remarks/>
- public string @const
- {
- get
- {
- return this.constField;
- }
- set
- {
- this.constField = value;
- }
- }
- /// <remarks/>
- public string query
- {
- get
- {
- return this.queryField;
- }
- set
- {
- this.queryField = value;
- }
- }
- /// <remarks/>
- public string returnType
- {
- get
- {
- return this.returnTypeField;
- }
- set
- {
- this.returnTypeField = value;
- }
- }
- /// <remarks/>
- public bool dynamic
- {
- get
- {
- return this.dynamicField;
- }
- set
- {
- this.dynamicField = value;
- }
- }
- }
- /// <remarks/>
- [System.SerializableAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
- public partial class traciClassChangeStateQueries
- {
- private traciClassChangeStateQueriesChangeStateQuery changeStateQueryField;
- /// <remarks/>
- public traciClassChangeStateQueriesChangeStateQuery changeStateQuery
- {
- get
- {
- return this.changeStateQueryField;
- }
- set
- {
- this.changeStateQueryField = value;
- }
- }
- }
- /// <remarks/>
- [System.SerializableAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
- public partial class traciClassChangeStateQueriesChangeStateQuery
- {
- private string nameField;
- private string queryField;
- private traciClassChangeStateQueriesChangeStateQueryAffects affectsField;
- /// <remarks/>
- public string name
- {
- get
- {
- return this.nameField;
- }
- set
- {
- this.nameField = value;
- }
- }
- /// <remarks/>
- public string query
- {
- get
- {
- return this.queryField;
- }
- set
- {
- this.queryField = value;
- }
- }
- /// <remarks/>
- public traciClassChangeStateQueriesChangeStateQueryAffects affects
- {
- get
- {
- return this.affectsField;
- }
- set
- {
- this.affectsField = value;
- }
- }
- }
- /// <remarks/>
- [System.SerializableAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
- public partial class traciClassChangeStateQueriesChangeStateQueryAffects
- {
- private string affectField;
- /// <remarks/>
- public string affect
- {
- get
- {
- return this.affectField;
- }
- set
- {
- this.affectField = value;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement