init
This commit is contained in:
16
Common/DTS.CommonCore/Events/TSRAIRGo/Arm.cs
Normal file
16
Common/DTS.CommonCore/Events/TSRAIRGo/Arm.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Microsoft.Practices.Prism.Events;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DTS.Common.Events.TSRAIRGo
|
||||
{
|
||||
public class ArmEvent : CompositePresentationEvent<ArmArg> { }
|
||||
|
||||
public class ArmArg
|
||||
{
|
||||
public bool Arm { get; set; }
|
||||
}
|
||||
}
|
||||
11
Common/DTS.CommonCore/Events/TSRAIRGo/GlobalStatus.cs
Normal file
11
Common/DTS.CommonCore/Events/TSRAIRGo/GlobalStatus.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Microsoft.Practices.Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events.TSRAIRGo
|
||||
{
|
||||
public class GlobalStatusEvent : CompositePresentationEvent<GlobalStatusArg> { }
|
||||
|
||||
public class GlobalStatusArg
|
||||
{
|
||||
public string Message { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using Microsoft.Practices.Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events
|
||||
{
|
||||
public class NavigateFromTSRAIRGoToDataPROEvent : CompositePresentationEvent<NavigateFromTSRAIRGoToDataPROArg> { }
|
||||
|
||||
public class NavigateFromTSRAIRGoToDataPROArg
|
||||
{
|
||||
}
|
||||
}
|
||||
10
Common/DTS.CommonCore/Events/TSRAIRGo/NavigateToDashboard.cs
Normal file
10
Common/DTS.CommonCore/Events/TSRAIRGo/NavigateToDashboard.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Microsoft.Practices.Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events
|
||||
{
|
||||
public class NavigateToDashboardEvent : CompositePresentationEvent<NavigateToDashboardArg> { }
|
||||
|
||||
public class NavigateToDashboardArg
|
||||
{
|
||||
}
|
||||
}
|
||||
17
Common/DTS.CommonCore/Events/TSRAIRGo/Trigger.cs
Normal file
17
Common/DTS.CommonCore/Events/TSRAIRGo/Trigger.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Microsoft.Practices.Prism.Events;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
|
||||
namespace DTS.Common.Events.TSRAIRGo
|
||||
{
|
||||
|
||||
public class TriggerEvent : CompositePresentationEvent<TriggerArg> { }
|
||||
|
||||
public class TriggerArg
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user