ConfigurationSet.cs 529 B

123456789101112131415
  1. using System.Collections.Generic;
  2. using Wayne.FDCPOSLibrary;
  3. namespace Wayne.ForecourtControl.Fusion.ReadDeviceStatus
  4. {
  5. /// <summary>
  6. /// Configuration set - contains the complete configuration read from FDC server.
  7. /// </summary>
  8. public class ConfigurationSet
  9. {
  10. public ServiceResponseGetDSPConfiguration DspConfiguration { get; set; }
  11. public ServiceResponseGetTLGConfiguration TlgConfiguration { get; set; }
  12. public ServiceResponseGetProductTable ProductTable { get; set; }
  13. }
  14. }