12 lines
203 B
C#
12 lines
203 B
C#
|
|
using Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events.TSRAIRGo
|
|||
|
|
{
|
|||
|
|
public class ArmEvent : PubSubEvent<ArmArg> { }
|
|||
|
|
|
|||
|
|
public class ArmArg
|
|||
|
|
{
|
|||
|
|
public bool Arm { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|