init
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface IPaginationViewModel : IBaseViewModel
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
@@ -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> { }
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,10 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace DTS.Common.Interface.ExportData
|
||||
{
|
||||
public interface IExportHeader : INotifyPropertyChanged
|
||||
{
|
||||
string HeaderName { get; set; }
|
||||
bool IsSelected { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user