-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.cs
59 lines (48 loc) · 1.74 KB
/
Config.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallFlowVisualizer
{
public class GcSettings
{
public string GcProfileFileName { get; set; }
public int PageSize { get; set; }
public int MaxRetryTimeSec { get; set; }
public int RetryMax { get; set; }
}
public class ProxySettings
{
public bool UseProxy { get; set; }
public string ProxyServerAddress { get; set; }
}
public class CfvSettings
{
public bool AppendDateTimeToFileName { get; set; }
public bool AppendGcFlowIdToFileName { get; set; }
public bool AppendGcFlowTypeToFileName { get; set; }
public bool AppendGcOrgNameToFileName { get; set; }
public List<string> ConditionNodeList { get; set; }
public bool CreateParticipantDataList { get; set; }
public bool CreateFlowPerReusabletask { get; set; }
public int MaxSecondDescriptionLengh { get; set; }
public bool ShowExpression { get; set; }
public bool CreatePagePerReusabletask { get;set; }
public List<string> flowTypeList { get; set; }
public bool ShowPromptDetail { get; set; }
}
public class DrawioSettings
{
public bool ColorNode { get; set; }
public bool NodeRound { get; set; }
public bool LineRound { get; set; }
public int Nodespacing { get; set; }
public int Levelspacing { get; set; }
public bool ReplaceSpecialCharacter { get; set; }
public int MaxRetryCount { get; set; }
public bool ConvertToVisio { get; set; }
public bool ConvertToPng { get; set; }
public bool DisableAcceleration { get; set; }
}
}