aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Azure/Tango.AzureUtils/AzureUtilsProgressEventArgs.cs
blob: 554ae8e3db1e3dddacb3299c357f72d3cb2af5b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.AzureUtils
{
    public class AzureUtilsProgressEventArgs : EventArgs
    {
        public AzureUtilsStage Stage { get; set; }
        public double Progress { get; set; }
        public double Maximum { get; set; }
        public bool IsIndeterminate { get; set; }
        public String Message { get; set; }
    }
}