Skip to content

Commit ae944d0

Browse files
Add missing props to IReport
1 parent b038d19 commit ae944d0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Src/FinderOuter/Models/IReport.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// Distributed under the MIT software license, see the accompanying
44
// file LICENCE or http://www.opensource.org/licenses/mit-license.php.
55

6+
using System;
67
using System.ComponentModel;
78
using System.Diagnostics;
89
using System.Numerics;
@@ -18,6 +19,9 @@ public interface IReport : INotifyPropertyChanged
1819
bool IsProgressVisible { get; set; }
1920
double Progress { get; set; }
2021
bool FoundAnyResult { get; set; }
22+
double Speed { get; set; }
23+
double TotalChecked { get; set; }
24+
TimeSpan Remaining { get; set; }
2125
Stopwatch Timer { get; }
2226
BigInteger Total { get; }
2327

0 commit comments

Comments
 (0)