19 lines
482 B
C#
19 lines
482 B
C#
using Prism.Events;
|
|
|
|
namespace DTS.Common.Events
|
|
{
|
|
/// <summary>
|
|
/// Event to inform app that Automatic Mode status has changed
|
|
/// </summary>
|
|
/// <remarks>
|
|
///
|
|
/// </remarks>
|
|
public class AutomaticModeStatusEvent : PubSubEvent<AutomaticModeStatusEventArgs> { }
|
|
|
|
public class AutomaticModeStatusEventArgs
|
|
{
|
|
public bool TextSet { get; set; } = false;
|
|
public string Text { get; set; } = string.Empty;
|
|
}
|
|
}
|