Files
DP44/Common/DTS.Common/.svn/pristine/5f/5fa01efb394394f7e69a594b406278faeee381fd.svn-base

20 lines
478 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using Prism.Events;
namespace DTS.Common.Events
{
/// <summary>
/// Event to inform app that it should mark itself busy or available
/// </summary>
/// <remarks>
///
/// </remarks>
public class DBConnectionEvent : PubSubEvent<DBConnectionArg> { }
public class DBConnectionArg
{
public bool Connected { get; set; }
public string DBName { get; set; }
public string Server { get; set; }
}
}