Files
DP44/Common/DTS.CommonCore/.svn/pristine/78/780ef2487134e5c69fc4a2582e87304a1c9c11da.svn-base

15 lines
429 B
Plaintext
Raw Normal View History

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