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