1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace athosRT.Devices.EFEM
- {
- public interface IData
- {
- bool Error { get; }
- bool IsLinkOk { get; }
- bool Busy { get; }
- bool Disabled { get; set; }
- bool Initialized { get; set; }
- bool OriginSearched { get; set; }
- bool InUsed { get; set; }
- }
- }
|