using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.DTO; using Tango.BL.Entities; using Tango.Transport.Web; namespace Tango.FSE.Web.Messages { public class GetTechComponentsResponse : WebResponseMessage { public List Monitors { get; set; } public List IOs { get; set; } public List Dispensers { get; set; } public List Controllers { get; set; } public List Heaters { get; set; } public List Valves { get; set; } public List Motors { get; set; } public List Blowers { get; set; } public GetTechComponentsResponse() { Monitors = new List(); IOs = new List(); Dispensers = new List(); Heaters = new List(); Valves = new List(); Motors = new List(); Blowers = new List(); } } }