using System; using DTS.Common.Interface.GroupTemplate; namespace DTS.Common.Interface.Groups { /// /// represents a channel in a group (logical channel) /// can be associated with a physical hardware channel and/or a sensor /// [THIS IS FOR THE OLD (PRE 2.0) TESTOBJECT CHANNELS] /// public interface IGroupChannel : IGroupTemplateChannel, IComparable { /// /// controls whether channel should be used when collecting data or not /// Disabled channels are not used in run test /// bool Disabled { get; set; } int ChannelIdx { get; set; } /// /// the serial number of the sensor associated with this channel (if any) /// string SensorSerialNumber { get; set; } /// /// the hardware channel associated with this channel /// string HardwareId { get; set; } } }