init
This commit is contained in:
18
Common/DTS.Common/Events/TSRAIRGo/SystemStatus.cs
Normal file
18
Common/DTS.Common/Events/TSRAIRGo/SystemStatus.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events.TSRAIRGo
|
||||
{
|
||||
public class SystemStatusEvent : PubSubEvent<SystemStatusArg> { }
|
||||
|
||||
public class SystemStatusArg
|
||||
{
|
||||
public string Message { get; set; }
|
||||
}
|
||||
|
||||
public class SystemErrorEvent : PubSubEvent<SystemErrorArg> { }
|
||||
|
||||
public class SystemErrorArg
|
||||
{
|
||||
public string Error { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user