Advertisement
Guest User

Untitled

a guest
May 10th, 2016
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 7.31 KB | None | 0 0
  1.     /// <remarks/>
  2.     [System.SerializableAttribute()]
  3.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  4.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  5.     [System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
  6.     public partial class traciClass
  7.     {
  8.  
  9.         private string nameField;
  10.  
  11.         private string javadocField;
  12.  
  13.         private string[] reposField;
  14.  
  15.         private string commandField;
  16.  
  17.         private traciClassReadQueries readQueriesField;
  18.  
  19.         private traciClassChangeStateQueries changeStateQueriesField;
  20.  
  21.         /// <remarks/>
  22.         public string name
  23.         {
  24.             get
  25.             {
  26.                 return this.nameField;
  27.             }
  28.             set
  29.             {
  30.                 this.nameField = value;
  31.             }
  32.         }
  33.  
  34.         /// <remarks/>
  35.         public string javadoc
  36.         {
  37.             get
  38.             {
  39.                 return this.javadocField;
  40.             }
  41.             set
  42.             {
  43.                 this.javadocField = value;
  44.             }
  45.         }
  46.  
  47.         /// <remarks/>
  48.         [System.Xml.Serialization.XmlArrayItemAttribute("repo", IsNullable = false)]
  49.         public string[] repos
  50.         {
  51.             get
  52.             {
  53.                 return this.reposField;
  54.             }
  55.             set
  56.             {
  57.                 this.reposField = value;
  58.             }
  59.         }
  60.  
  61.         /// <remarks/>
  62.         public string command
  63.         {
  64.             get
  65.             {
  66.                 return this.commandField;
  67.             }
  68.             set
  69.             {
  70.                 this.commandField = value;
  71.             }
  72.         }
  73.  
  74.         /// <remarks/>
  75.         public traciClassReadQueries readQueries
  76.         {
  77.             get
  78.             {
  79.                 return this.readQueriesField;
  80.             }
  81.             set
  82.             {
  83.                 this.readQueriesField = value;
  84.             }
  85.         }
  86.  
  87.         /// <remarks/>
  88.         public traciClassChangeStateQueries changeStateQueries
  89.         {
  90.             get
  91.             {
  92.                 return this.changeStateQueriesField;
  93.             }
  94.             set
  95.             {
  96.                 this.changeStateQueriesField = value;
  97.             }
  98.         }
  99.     }
  100.  
  101.     /// <remarks/>
  102.     [System.SerializableAttribute()]
  103.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  104.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  105.     public partial class traciClassReadQueries
  106.     {
  107.  
  108.         private traciClassReadQueriesReadQuery readQueryField;
  109.  
  110.         /// <remarks/>
  111.         public traciClassReadQueriesReadQuery readQuery
  112.         {
  113.             get
  114.             {
  115.                 return this.readQueryField;
  116.             }
  117.             set
  118.             {
  119.                 this.readQueryField = value;
  120.             }
  121.         }
  122.     }
  123.  
  124.     /// <remarks/>
  125.     [System.SerializableAttribute()]
  126.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  127.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  128.     public partial class traciClassReadQueriesReadQuery
  129.     {
  130.  
  131.         private string nameField;
  132.  
  133.         private string enumField;
  134.  
  135.         private string constField;
  136.  
  137.         private string queryField;
  138.  
  139.         private string returnTypeField;
  140.  
  141.         private bool dynamicField;
  142.  
  143.         /// <remarks/>
  144.         public string name
  145.         {
  146.             get
  147.             {
  148.                 return this.nameField;
  149.             }
  150.             set
  151.             {
  152.                 this.nameField = value;
  153.             }
  154.         }
  155.  
  156.         /// <remarks/>
  157.         public string @enum
  158.         {
  159.             get
  160.             {
  161.                 return this.enumField;
  162.             }
  163.             set
  164.             {
  165.                 this.enumField = value;
  166.             }
  167.         }
  168.  
  169.         /// <remarks/>
  170.         public string @const
  171.         {
  172.             get
  173.             {
  174.                 return this.constField;
  175.             }
  176.             set
  177.             {
  178.                 this.constField = value;
  179.             }
  180.         }
  181.  
  182.         /// <remarks/>
  183.         public string query
  184.         {
  185.             get
  186.             {
  187.                 return this.queryField;
  188.             }
  189.             set
  190.             {
  191.                 this.queryField = value;
  192.             }
  193.         }
  194.  
  195.         /// <remarks/>
  196.         public string returnType
  197.         {
  198.             get
  199.             {
  200.                 return this.returnTypeField;
  201.             }
  202.             set
  203.             {
  204.                 this.returnTypeField = value;
  205.             }
  206.         }
  207.  
  208.         /// <remarks/>
  209.         public bool dynamic
  210.         {
  211.             get
  212.             {
  213.                 return this.dynamicField;
  214.             }
  215.             set
  216.             {
  217.                 this.dynamicField = value;
  218.             }
  219.         }
  220.     }
  221.  
  222.     /// <remarks/>
  223.     [System.SerializableAttribute()]
  224.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  225.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  226.     public partial class traciClassChangeStateQueries
  227.     {
  228.  
  229.         private traciClassChangeStateQueriesChangeStateQuery changeStateQueryField;
  230.  
  231.         /// <remarks/>
  232.         public traciClassChangeStateQueriesChangeStateQuery changeStateQuery
  233.         {
  234.             get
  235.             {
  236.                 return this.changeStateQueryField;
  237.             }
  238.             set
  239.             {
  240.                 this.changeStateQueryField = value;
  241.             }
  242.         }
  243.     }
  244.  
  245.     /// <remarks/>
  246.     [System.SerializableAttribute()]
  247.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  248.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  249.     public partial class traciClassChangeStateQueriesChangeStateQuery
  250.     {
  251.  
  252.         private string nameField;
  253.  
  254.         private string queryField;
  255.  
  256.         private traciClassChangeStateQueriesChangeStateQueryAffects affectsField;
  257.  
  258.         /// <remarks/>
  259.         public string name
  260.         {
  261.             get
  262.             {
  263.                 return this.nameField;
  264.             }
  265.             set
  266.             {
  267.                 this.nameField = value;
  268.             }
  269.         }
  270.  
  271.         /// <remarks/>
  272.         public string query
  273.         {
  274.             get
  275.             {
  276.                 return this.queryField;
  277.             }
  278.             set
  279.             {
  280.                 this.queryField = value;
  281.             }
  282.         }
  283.  
  284.         /// <remarks/>
  285.         public traciClassChangeStateQueriesChangeStateQueryAffects affects
  286.         {
  287.             get
  288.             {
  289.                 return this.affectsField;
  290.             }
  291.             set
  292.             {
  293.                 this.affectsField = value;
  294.             }
  295.         }
  296.     }
  297.  
  298.     /// <remarks/>
  299.     [System.SerializableAttribute()]
  300.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  301.     [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  302.     public partial class traciClassChangeStateQueriesChangeStateQueryAffects
  303.     {
  304.  
  305.         private string affectField;
  306.  
  307.         /// <remarks/>
  308.         public string affect
  309.         {
  310.             get
  311.             {
  312.                 return this.affectField;
  313.             }
  314.             set
  315.             {
  316.                 this.affectField = value;
  317.             }
  318.         }
  319.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement