1234567891011121314151617181920212223242526 |
- 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; }
- }
- }
|