using System.Collections.Generic; using Wayne.FDCPOSLibrary; namespace Wayne.ForecourtControl.Fusion.ReadDeviceStatus { /// <summary> /// Configuration set - contains the complete configuration read from FDC server. /// </summary> public class ConfigurationSet { public ServiceResponseGetDSPConfiguration DspConfiguration { get; set; } public ServiceResponseGetTLGConfiguration TlgConfiguration { get; set; } public ServiceResponseGetProductTable ProductTable { get; set; } } }