using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events
{
///
/// Event to inform app that it should mark itself busy or available
///
///
///
///
public class LogoutUserEvent : CompositePresentationEvent { }
public class LogoutUserArg
{
public enum Reasons
{
DatabaseSwitch
}
public Reasons Reason { get; }
public LogoutUserArg(Reasons reason)
{
Reason = reason;
}
}
}