ServiceResponseFreeFuelSaleTrx.cs 423 B

1234567891011121314
  1. using System.Xml.Serialization;
  2. namespace Wayne.FDCPOSLibrary
  3. {
  4. [System.SerializableAttribute()]
  5. [System.Xml.Serialization.XmlRootAttribute(ElementName = "ServiceResponse", Namespace = "")]
  6. public partial class ServiceResponseUnlockFuelSaleTrx : ServiceResponseBaseFuelSaleTrx
  7. {
  8. public ServiceResponseUnlockFuelSaleTrx()
  9. {
  10. RequestType = "UnlockFuelSaleTrx";
  11. }
  12. }
  13. }