Files
DP44/Common/DTS.Common/Events/TSRAIRGo/Arm.cs

12 lines
203 B
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
using Prism.Events;
namespace DTS.Common.Events.TSRAIRGo
{
public class ArmEvent : PubSubEvent<ArmArg> { }
public class ArmArg
{
public bool Arm { get; set; }
}
}