using Prism.Events; namespace DTS.Common.Events { /// /// Event to inform app that it should mark itself busy or available /// /// /// /// public class DBConnectionEvent : PubSubEvent { } public class DBConnectionArg { public bool Connected { get; set; } public string DBName { get; set; } public string Server { get; set; } } }