Files
DP44/Common/DTS.Common/.svn/pristine/72/726614ed332936ed422e175b82c498e0864c792c.svn-base
2026-04-17 14:55:32 -04:00

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