init
This commit is contained in:
16
Common/DTS.Common/Classes/StatusAndProgressBarEventArgs.cs
Normal file
16
Common/DTS.Common/Classes/StatusAndProgressBarEventArgs.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user