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