FacilitiesItem.cs 616 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.Common.ToolLayout
  7. {
  8. public class FacilitiesItem
  9. {
  10. public bool Installed { get; set; }
  11. public string Type { get; set; }
  12. public bool ExternalPumpBox { get; set; }
  13. public bool SampleStation1Installed { get; set; }
  14. public bool SampleStation2Installed { get; set; }
  15. public bool SlipstreamInterfaceInstalled { get; set; }
  16. public bool RecirculationFlowPressure { get; set; }
  17. }
  18. }