Files
DP44/Common/DTS.Common/Interface/DTS.Viewer/TestDefinition/ITestGraphs.cs

14 lines
346 B
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.Collections.Generic;
// ReSharper disable CheckNamespace
namespace DTS.Common.Interface
{
public interface ITestGraphs
{
string Name { get; set; }
string HardwareChannelName { get; set; }
List<string> ChannelIds { get; set; }
List<ITestChannel> Channels { get; set; }
}
}