Files
DP44/Common/DTS.Common/.svn/pristine/51/510e543a2914c64a88ac21d0b29e2b6aa6bd9897.svn-base

19 lines
365 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using Prism.Events;
namespace DTS.Common.Events
{
/// <summary>
/// Event to inform app that com status has changed
/// </summary>
/// <remarks>
///
/// </remarks>
public class CommActiveEvent : PubSubEvent<ComStatusArg> { }
public enum ComStatusArg
{
CommandStart,
ResponseStart
}
}