naps2/NAPS2.Lib/Operation/OperationStatus.cs
2022-08-20 17:50:38 -07:00

17 lines
399 B
C#

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