Common.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Wayne.FDCPOSLibrary
  4. {
  5. static public class FDCGlobal
  6. {
  7. static public FDCVersion ProtocolVersion = FDCVersion.V0007;
  8. }
  9. [System.SerializableAttribute()]
  10. public partial class ServiceRequestDeviceClass
  11. {
  12. private string TypeField;
  13. private string DeviceIdField;
  14. [System.Xml.Serialization.XmlAttributeAttribute()]
  15. public string Type
  16. {
  17. get
  18. {
  19. return this.TypeField;
  20. }
  21. set
  22. {
  23. this.TypeField = value;
  24. }
  25. }
  26. [System.Xml.Serialization.XmlAttributeAttribute()]
  27. public string DeviceID
  28. {
  29. get
  30. {
  31. return this.DeviceIdField;
  32. }
  33. set
  34. {
  35. this.DeviceIdField = value;
  36. }
  37. }
  38. }
  39. [System.SerializableAttribute()]
  40. public partial class FuelModeElementClass
  41. {
  42. private string ModeNoField;
  43. [System.Xml.Serialization.XmlAttributeAttribute()]
  44. public string ModeNo
  45. {
  46. get
  47. {
  48. return this.ModeNoField;
  49. }
  50. set
  51. {
  52. this.ModeNoField = value;
  53. }
  54. }
  55. }
  56. [System.SerializableAttribute()]
  57. public partial class ProductElementClass
  58. {
  59. private string ProductNoField;
  60. [System.Xml.Serialization.XmlAttributeAttribute()]
  61. public string ProductNo
  62. {
  63. get
  64. {
  65. return this.ProductNoField;
  66. }
  67. set
  68. {
  69. this.ProductNoField = value;
  70. }
  71. }
  72. }
  73. [System.SerializableAttribute()]
  74. public partial class NozzleStateClass
  75. {
  76. private string NozzleNoField;
  77. private string LogicalNozzleField;
  78. private string LogicalStateField;
  79. private string TankLogicalStateField;
  80. [System.Xml.Serialization.XmlAttributeAttribute()]
  81. public string NozzleNo
  82. {
  83. get
  84. {
  85. return this.NozzleNoField;
  86. }
  87. set
  88. {
  89. this.NozzleNoField = value;
  90. }
  91. }
  92. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  93. public string LogicalNozzle
  94. {
  95. get
  96. {
  97. return this.LogicalNozzleField;
  98. }
  99. set
  100. {
  101. this.LogicalNozzleField = value;
  102. }
  103. }
  104. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  105. public string LogicalState
  106. {
  107. get
  108. {
  109. return this.LogicalStateField;
  110. }
  111. set
  112. {
  113. this.LogicalStateField = value;
  114. }
  115. }
  116. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  117. public string TankLogicalState
  118. {
  119. get
  120. {
  121. return this.TankLogicalStateField;
  122. }
  123. set
  124. {
  125. this.TankLogicalStateField = value;
  126. }
  127. }
  128. }
  129. }