using Microsoft.Practices.Prism.Events; namespace DTS.Common.Events { /// /// Event to inform app that Automatic Mode status has changed /// /// /// /// public class AutomaticModeStatusEvent : CompositePresentationEvent { } public class AutomaticModeStatusEventArgs { public bool TextSet { get; set; } = false; public string Text { get; set; } = string.Empty; } }