Files
DP44/Common/DTS.Common/Events/TSRAIRGo/Arm.cs
2026-04-17 14:55:32 -04:00

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; }
}
}