using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MECF.Framework.Common.ToolLayout { public class FacilitiesItem { public bool Installed { get; set; } public string Type { get; set; } public bool ExternalPumpBox { get; set; } public bool SampleStation1Installed { get; set; } public bool SampleStation2Installed { get; set; } public bool SlipstreamInterfaceInstalled { get; set; } public bool RecirculationFlowPressure { get; set; } } }