init
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using Microsoft.Practices.Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events.GroupTemplates.CustomChannels
|
||||
{
|
||||
/// <summary>
|
||||
/// Event to inform of custom channel import status
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
///
|
||||
/// </remarks>
|
||||
public class CustomChannelImportEvent : CompositePresentationEvent<CustomChannelImportEventArgs> { }
|
||||
|
||||
public class CustomChannelImportEventArgs
|
||||
{
|
||||
public enum Status
|
||||
{
|
||||
Done
|
||||
}
|
||||
public Status ImportStatus { get; }
|
||||
|
||||
public CustomChannelImportEventArgs(Status status)
|
||||
{
|
||||
ImportStatus = status;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace DTS.Common.Enums
|
||||
{
|
||||
public enum UartDataFormat
|
||||
{
|
||||
Binary,
|
||||
PlainText,
|
||||
NMEA
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
using Microsoft.Practices.Prism.Events;
|
||||
// ReSharper disable CheckNamespace
|
||||
|
||||
namespace DTS.Common.Events
|
||||
{
|
||||
public class CalibrationBehaviorSettingChangedEvent : CompositePresentationEvent<DTS.Common.Enums.Sensors.CalibrationBehaviors> { }
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
namespace DTS.Common.Interface.DASFactory
|
||||
{
|
||||
public interface ITimeSynchronization
|
||||
{
|
||||
bool SupportsTimeSynchronization { get; }
|
||||
DateTime SystemBaseTime { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user