Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/RT/IOCore/Interfaces/IIOAccessor.cs

22 lines
378 B
C#

namespace Aitex.Core.RT.IOCore;
public interface IIOAccessor
{
string Name { get; }
int Index { get; }
int BlockOffset { get; set; }
string Addr { get; set; }
string Provider { get; set; }
bool Visible { get; set; }
string Description { get; set; }
string StringIndex { get; }
int IoTableIndex { get; set; }
}