-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGeckoboardModel.cs
More file actions
46 lines (41 loc) · 1.1 KB
/
GeckoboardModel.cs
File metadata and controls
46 lines (41 loc) · 1.1 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GeckoboardConnector
{
class GeckoboardModel
{
public class SLAWorkload
{
public SLAWorkload()
{
OpenSla = 0;
ClosedSla = 0;
}
public string Fullname { get; set; }
public int OpenSla { get; set; }
public int ClosedSla { get; set; }
}
public class SlaStatusBreakdown
{
public SlaStatusBreakdown()
{
Stopped = 0;
Paused = 0;
Breached = 0;
Red = 0;
Amber = 0;
Green = 0;
}
public int SlaId { get; set; }
public string SlaName { get; set; }
public int Stopped { get; set; }
public int Paused { get; set; }
public int Breached { get; set; }
public int Red { get; set; }
public int Amber { get; set; }
public int Green { get; set; }
}
}
}