13 lines
294 B
C#
13 lines
294 B
C#
using System.Collections.Generic;
|
|
// ReSharper disable CheckNamespace
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface ITestGraphs
|
|
{
|
|
string Name { get; set; }
|
|
string HardwareChannelName { get; set; }
|
|
List<string> ChannelId { get; set; }
|
|
}
|
|
}
|