init
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user