Files
2026-04-17 14:55:32 -04:00

16 lines
416 B
C#

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; }
}
}