Files
DP44/Common/DTS.CommonCore/.svn/pristine/62/6267c1638d0b06f7b31d2872a5ee18a47433015a.svn-base

16 lines
416 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System;
using System.Collections.Generic;
using DTS.Common.Enums.Sensors;
// ReSharper disable CheckNamespace
namespace DTS.Common.Interface
{
public interface ITestSetupMetadata
{
string SetupName { get; set; }
DateTime TimeStamp { get; set; }
List<ITestGraphs> TestGraphs { get; set; }
CalibrationBehaviors CalibrationBehavior { get; set; }
}
}