using Prism.Events;
namespace DTS.Common.Events
{
///
/// Event to inform feedback page to get updated
/// FB 22323
///
///
///
///
public class FeedbackEvent : PubSubEvent { }
public class FeedbackArg
{
///
/// Severity being notified
///
public Severity Severity { get; private set; }
///
/// Message that is logged
///
public string Message { get; private set; }
public FeedbackArg(Severity severity, string message)
{
Severity = severity;
Message = message;
}
}
public enum Severity
{
Information,
Warning,
Error,
ResponseStarting,
CommandStarting
}
}