123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- using System;
- using System.Xml.Serialization;
- namespace Wayne.FDCPOSLibrary
- {
- static public class FDCGlobal
- {
- static public FDCVersion ProtocolVersion = FDCVersion.V0007;
- }
- [System.SerializableAttribute()]
- public partial class ServiceRequestDeviceClass
- {
- private string TypeField;
- private string DeviceIdField;
- [System.Xml.Serialization.XmlAttributeAttribute()]
- public string Type
- {
- get
- {
- return this.TypeField;
- }
- set
- {
- this.TypeField = value;
- }
- }
- [System.Xml.Serialization.XmlAttributeAttribute()]
- public string DeviceID
- {
- get
- {
- return this.DeviceIdField;
- }
- set
- {
- this.DeviceIdField = value;
- }
- }
- }
- [System.SerializableAttribute()]
- public partial class FuelModeElementClass
- {
- private string ModeNoField;
- [System.Xml.Serialization.XmlAttributeAttribute()]
- public string ModeNo
- {
- get
- {
- return this.ModeNoField;
- }
- set
- {
- this.ModeNoField = value;
- }
- }
- }
- [System.SerializableAttribute()]
- public partial class ProductElementClass
- {
- private string ProductNoField;
- [System.Xml.Serialization.XmlAttributeAttribute()]
- public string ProductNo
- {
- get
- {
- return this.ProductNoField;
- }
- set
- {
- this.ProductNoField = value;
- }
- }
- }
- [System.SerializableAttribute()]
- public partial class NozzleStateClass
- {
- private string NozzleNoField;
- private string LogicalNozzleField;
- private string LogicalStateField;
- private string TankLogicalStateField;
- [System.Xml.Serialization.XmlAttributeAttribute()]
- public string NozzleNo
- {
- get
- {
- return this.NozzleNoField;
- }
- set
- {
- this.NozzleNoField = value;
- }
- }
- [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
- public string LogicalNozzle
- {
- get
- {
- return this.LogicalNozzleField;
- }
- set
- {
- this.LogicalNozzleField = value;
- }
- }
- [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
- public string LogicalState
- {
- get
- {
- return this.LogicalStateField;
- }
- set
- {
- this.LogicalStateField = value;
- }
- }
- [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
- public string TankLogicalState
- {
- get
- {
- return this.TankLogicalStateField;
- }
- set
- {
- this.TankLogicalStateField = value;
- }
- }
- }
- }
|