using System;
namespace Wayne.ForecourtControl
{
public interface IOffsetIndex : IDeviceIndex
{
///
/// The Base Index as a 0-based index
///
int Base0Index { get; }
///
/// The unmodified index value
///
int BaseIndex { get; }
///
/// The offset between the base and normalized index (normalized = base + offset)
///
int Offset { get; }
///
/// The offset between the base and 0-base index (base0 = base + 0offset)
///
int Base0Offset { get; }
}
}