IData.cs 437 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 athosRT.Devices.EFEM
  7. {
  8. public interface IData
  9. {
  10. bool Error { get; }
  11. bool IsLinkOk { get; }
  12. bool Busy { get; }
  13. bool Disabled { get; set; }
  14. bool Initialized { get; set; }
  15. bool OriginSearched { get; set; }
  16. bool InUsed { get; set; }
  17. }
  18. }