using System.Collections.Generic; namespace DTS.Common.Interface.DASFactory { /// /// 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; } /// /// The S6/S6A realtime UDP stream address. /// string UDPStreamAddress { get; } } }