namespace Aitex.Core.RT.Device { public interface IModuleDevice { string Module { get; } bool IsInstalled { get; } bool IsReady { get; } bool IsError { get; } bool IsInit { get; } bool Home(out string reason); } }