init
This commit is contained in:
23
DataPRO/IService/Classes/TDAS/TDASServiceSetupInfo.cs
Normal file
23
DataPRO/IService/Classes/TDAS/TDASServiceSetupInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using DTS.Common.DAS.Concepts;
|
||||
using DTS.Common.Enums.DASFactory;
|
||||
|
||||
namespace DTS.DASLib.Service
|
||||
{
|
||||
public class TDASServiceSetupInfo
|
||||
{
|
||||
public string SetupDescription { get; set; }
|
||||
public double? SamplesPerSecond { get; set; }
|
||||
public float HardwareFilterRateHz { get; set; }
|
||||
public DFConstantsAndEnums.RecordingMode RecordingMode { get; set; }
|
||||
public bool? CheckoutMode { get; set; }
|
||||
|
||||
public TDASServiceSetupInfo(string setupDescription, double? samplesPerSecond, float hardwareFilterRateHz, DFConstantsAndEnums.RecordingMode recordingMode, bool? checkoutMode)
|
||||
{
|
||||
SetupDescription = setupDescription;
|
||||
SamplesPerSecond = samplesPerSecond;
|
||||
HardwareFilterRateHz = hardwareFilterRateHz;
|
||||
RecordingMode = recordingMode;
|
||||
CheckoutMode = checkoutMode;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user