-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPureConnectFlowElements.cs
31 lines (29 loc) · 1.29 KB
/
PureConnectFlowElements.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallFlowVisualizer
{
internal class PureConnectFlowElements
{
internal string Name { get; set; } = null!;
internal string Type { get; set; } = null!;
internal string NodePath { get; set; } = null!;
internal string ParentNodePath { get; set; } = null!;
internal string MenuDigits { get; set; } = null!;
internal string Digit { get; set; } = null!;
internal string AudioFile { get; set; } = null!;
internal string Action { get; set; } = null!;
internal string ScheduleRef { get; set; } = null!;
internal string Workgroup { get; set; } = null!;
internal string Skills { get; set; } = null!;
internal string StationGroup { get; set; } = null!;
internal string MenuActions { get; set; } = null!;
internal string Active { get; set; } = null!;
internal string DNISString { get; set; } = null!;
internal string Default { get; set; } = null!;
internal string Subroutine { get; set; } = null!;
internal List<string> ParentNodePath2 { get; set; } = new List<string>();
}
}