This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 484 B

View File

@@ -0,0 +1,15 @@
using DTS.Common.Base;
namespace DTS.Common.Interface.Sensors.SensorsList
{
public interface ISensorsListEditGroupView : IBaseView
{
/// <summary>
/// handles adding/removing columns done before view is displayed
/// 13065 Sensor "First Use" Date
/// </summary>
void HandleColumns();
void HandleAssemblyVisibilityColumns(bool bDontAllowDataCollectionIfOverused);
void HandleInspectBeforeUseVisibilityColumn(bool show);
}
}

View File

@@ -0,0 +1,12 @@
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface ITestsViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Tests View.
/// </summary>
ITestsView View { get; }
}
}

View File

@@ -0,0 +1,18 @@
namespace DTS.Common.Enums.Hardware
{
public enum HardwareListTags
{
Included,
SerialNumber,
HardwareType,
ChannelCount,
Firmware,
MaxSampleRate,
TestSampleRate,
DSPStreamingFilter,
CalDate,
CalDueDate,
IPAddress,
FirstUseDate
}
}

View File

@@ -0,0 +1,9 @@
using DTS.Common.Enums.DASFactory;
namespace DTS.Common.Interface.DASFactory
{
public interface IAutoArmStatus
{
DFConstantsAndEnums.CommandStatus AutoArmStatus { get; set; }
}
}