using Prism.Events;
namespace DTS.Common.Events
{
///
/// Event to inform app that it should mark itself busy or available
///
///
///
///
public class UserEvent : PubSubEvent { }
public class UserEventArg
{
public enum Events
{
ViewingUserChanged
}
public Events EventType { get; private set; }
public object Argument { get; private set; }
public UserEventArg(Events eventType, object argument)
{
EventType = eventType;
Argument = argument;
}
}
}