naps2/NAPS2.Lib/Operation/OperationStatus.cs

17 lines
399 B
C#
Raw Permalink Normal View History

2022-08-21 03:50:38 +03:00
namespace NAPS2.Operation;
/// <summary>
/// A representation of the current status of an IOperation.
/// </summary>
public class OperationStatus
{
public string? StatusText { get; set; }
public int CurrentProgress { get; set; }
public int MaxProgress { get; set; }
public bool IndeterminateProgress { get; set; }
public OperationProgressType ProgressType { get; set; }
}