namespace Aitex.Core.RT.IOCore; public interface IIOAccessor { string Name { get; } IOType Type { 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; } }