Files
DP44/Common/DTS.CommonCore/.svn/pristine/16/165c3c3f6f41e9c74b29f4e33995f537b14a860a.svn-base
2026-04-17 14:55:32 -04:00

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; }
}
}