14 lines
346 B
Plaintext
14 lines
346 B
Plaintext
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|