aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Upgrade/FirmwareUpgradeProgressEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Upgrade/FirmwareUpgradeProgressEventArgs.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Upgrade/FirmwareUpgradeProgressEventArgs.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Upgrade/FirmwareUpgradeProgressEventArgs.cs b/Software/Visual_Studio/Tango.Integration/Upgrade/FirmwareUpgradeProgressEventArgs.cs
index 8315f4026..fa4f4cc96 100644
--- a/Software/Visual_Studio/Tango.Integration/Upgrade/FirmwareUpgradeProgressEventArgs.cs
+++ b/Software/Visual_Studio/Tango.Integration/Upgrade/FirmwareUpgradeProgressEventArgs.cs
@@ -8,9 +8,8 @@ namespace Tango.Integration.Upgrade
{
public class FirmwareUpgradeProgressEventArgs : EventArgs
{
- public double Current { get; set; }
- public double Total { get; set; }
- public bool IsIndeterminate { get; set; }
+ public long Current { get; set; }
+ public long Total { get; set; }
public FirmwareUpgradeStatus Status { get; set; }
public String Message { get; set; }
}