Files
DP44/Common/DTS.Common/Classes/StatusAndProgressBarEventArgs.cs

17 lines
491 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
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; }
}
}