16 lines
416 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|