-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStackState.cs
More file actions
25 lines (21 loc) · 743 Bytes
/
StackState.cs
File metadata and controls
25 lines (21 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.Collections.Generic;
namespace StackDeployCheck
{
public class StackState
{
public string StackName { get; set; }
public List<DockerTask> Tasks { get; set; }
public List<DockerService> Services { get; set; }
public int TotalTasks { get; internal set; }
public int StableTasks { get; internal set; }
public int CompleteTasks { get; internal set; }
public int TotalServices { get; internal set; }
public int UpdatedServices { get; internal set; }
public int FailedServices { get; internal set; }
public StackState()
{
Tasks = new List<DockerTask>();
Services = new List<DockerService>();
}
}
}