Sic.Framework/MECF.Framework.Common/Aitex/Core/RT/Device/IModuleDevice.cs

18 lines
244 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
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);
}
}