This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
using System;
using DTS.Common.Interface.GroupTemplate;
namespace DTS.Common.Interface.Groups
{
/// <summary>
/// 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]
/// </summary>
public interface IGroupChannel : IGroupTemplateChannel, IComparable<IGroupChannel>
{
/// <summary>
/// controls whether channel should be used when collecting data or not
/// Disabled channels are not used in run test
/// </summary>
bool Disabled { get; set; }
int ChannelIdx { get; set; }
/// <summary>
/// the serial number of the sensor associated with this channel (if any)
/// </summary>
string SensorSerialNumber { get; set; }
/// <summary>
/// the hardware channel associated with this channel
/// </summary>
string HardwareId { get; set; }
}
}