We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b038d19 commit ae944d0Copy full SHA for ae944d0
Src/FinderOuter/Models/IReport.cs
@@ -3,6 +3,7 @@
3
// Distributed under the MIT software license, see the accompanying
4
// file LICENCE or http://www.opensource.org/licenses/mit-license.php.
5
6
+using System;
7
using System.ComponentModel;
8
using System.Diagnostics;
9
using System.Numerics;
@@ -18,6 +19,9 @@ public interface IReport : INotifyPropertyChanged
18
19
bool IsProgressVisible { get; set; }
20
double Progress { get; set; }
21
bool FoundAnyResult { get; set; }
22
+ double Speed { get; set; }
23
+ double TotalChecked { get; set; }
24
+ TimeSpan Remaining { get; set; }
25
Stopwatch Timer { get; }
26
BigInteger Total { get; }
27
0 commit comments