17 lines
491 B
Plaintext
17 lines
491 B
Plaintext
using System.Windows;
|
|
using System.Windows.Media;
|
|
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Classes
|
|
{
|
|
public class StatusAndProgressBarEventArgs
|
|
{
|
|
public Color StatusColor { get; set; }
|
|
public string StatusText { get; set; }
|
|
public double ProgressValue { get; set; }
|
|
public Visibility ProgressBarVisibility { get; set; }
|
|
public IBaseViewModel Requester { get; set; }
|
|
public string ErrorText { get; set; }
|
|
}
|
|
}
|