Files
DP44/Common/DTS.CommonCore/.svn/pristine/13/13226a6dd8fdf3bfbb02cb2caab61291c60c1d28.svn-base

13 lines
294 B
Plaintext
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> ChannelId { get; set; }
}
}