using System.Collections.Generic;
namespace DTS.DASLib.Service
{
///
/// RealTime Interface for an DAS unit.
///
public interface IRealTime
{
///
/// The list of channels from which to recieve Real Time Data.
///
List RealtimeDASChannels { get; set; }
///
/// The Slice6 Axis 1, 2, 3 (X, Y, Z) tilt data in degrees.
///
List TiltAxisData { get; set; }
}
}