blob: 5fe1664641df8bef65d568c1d7c1c7bc57f3c4dd (
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.Deployment
{
public class DeploymentProgressEventArgs : EventArgs
{
public DeploymentStage Stage { get; set; }
public double Progress { get; set; }
public double Maximum { get; set; }
public bool IsIndeterminate { get; set; }
public String Message { get; set; }
}
}
|