ServiceResponseSetConfiguration.cs 412 B

123456789101112131415
  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 ServiceResponseSetConfiguration : ServiceResponseBasic
  7. {
  8. public ServiceResponseSetConfiguration()
  9. {
  10. RequestType = "SetConfiguration";
  11. }
  12. }
  13. }