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: 368 B

View File

@@ -0,0 +1,11 @@
namespace DTS.Common.Enums.Sensors
{
public enum SensorStatus
{
Available,
InUse,
OutForService,
OutForCalibration,
Retired
}
}

View File

@@ -0,0 +1,15 @@
using System.Collections.Generic;
using DTS.Common.Interface.DataRecorders;
using Prism.Events;
namespace DTS.Common.Events
{
/// <summary>
/// The TTSImportHardwareScanFinishedEvent event.
/// </summary>
///
/// <remarks>This event is used by the page to tell the Hardware Scan view model to update the list of DAS.</remarks>
///
public class TTSImportHardwareScanFinishedEvent : PubSubEvent<List<IDASHardware>> { }
}

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DTS.Common.Interface.DASFactory
{
/// <summary>
/// describes the argument to configuration events
/// 17872 Use DASConfig XMLs on disk when performing an emergency download with DAS that have blank filestore(s)
/// </summary>
public interface IDASConfigurationArg
{
IDASCommunication DAS { get; }
bool BlankConfigurationRead { get; }
bool ConfigurationFailedValidation { get; }
}
}