using Prism.Events;
namespace DTS.Common.Events
{
///
/// Event to inform app that com status has changed
///
///
///
///
public class TestEvent : PubSubEvent { }
public class TestEventArg
{
public TestEventStatus Status { get; private set; }
public TestEventArg(TestEventStatus status)
{
Status = status;
}
}
public enum TestEventStatus
{
TestStarted,
TestEnded
}
}