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

View File

@@ -0,0 +1,8 @@
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface IPaginationViewModel : IBaseViewModel
{
}
}

View File

@@ -0,0 +1,21 @@
using System.ComponentModel;
using DTS.Common.Converters;
using DTS.Common.Base.Classes;
namespace DTS.Common.Enums
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum DigitalOutputModes
{
[Description("Off")]
NONE = 0, //digital channel's mode not set
[DescriptionResource("DigitalOutputMode_FVLH")]
FVLH = 1 << 0, //set for 5 volt, low-to-high transition
[DescriptionResource("DigitalOutputMode_FVHL")]
FVHL = 1 << 1, //set for 5 volt, high-to-low transition
[DescriptionResource("DigitalOutputMode_CCNO")]
CCNO = 1 << 2, //set to contact closure normally open
[DescriptionResource("DigitalOutputMode_CCNC")]
CCNC = 1 << 3 //set to contact closure normally closed
}
}

View File

@@ -0,0 +1,13 @@
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events.TestSetups.TestSetupsList
{
/// <summary>
/// The TestSetupsListEditTestSetupEvent event.
/// </summary>
///
/// <remarks>This event fires when a test setup should be editted.</remarks>
///
public class TestSetupsListEditTestSetupEvent : CompositePresentationEvent<string> { }
}

View File

@@ -0,0 +1,10 @@
using System.ComponentModel;
namespace DTS.Common.Interface.ExportData
{
public interface IExportHeader : INotifyPropertyChanged
{
string HeaderName { get; set; }
bool IsSelected { get; set; }
}
}