diff options
author | Scott <[email protected]> | 2020-04-29 19:06:11 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-29 19:06:11 +0100 |
commit | 91051b41df7f9e6da68d14c9e806968df61ef050 (patch) | |
tree | 90293ad067e14e9eff409ed7bf5d105df3697a45 /win/CS/HandBrakeWPF/Services/Queue/Interfaces | |
parent | 565dae9f71330b87c5e7898a469052446c4592f0 (diff) |
WinGui: Enable multi-instance support. (#2797)
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Queue/Interfaces')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Queue/Interfaces/IQueueService.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Queue/Interfaces/IQueueService.cs b/win/CS/HandBrakeWPF/Services/Queue/Interfaces/IQueueService.cs index 1a2a04cce..5bf759917 100644 --- a/win/CS/HandBrakeWPF/Services/Queue/Interfaces/IQueueService.cs +++ b/win/CS/HandBrakeWPF/Services/Queue/Interfaces/IQueueService.cs @@ -63,6 +63,11 @@ namespace HandBrakeWPF.Services.Queue.Interfaces int ErrorCount { get; } /// <summary> + /// Gets the number of completed jobs. + /// </summary> + int CompletedCount { get; } + + /// <summary> /// Gets a value indicating whether IsProcessing. /// </summary> bool IsProcessing { get; } |