blob: a34796b6a67343d209e2c9c5f39f72c815cd4612 (
plain)
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
|
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Enumerations;
using Tango.FSE.Insights.Config;
using Tango.Settings;
namespace Tango.FSE.Insights
{
public class InsightsSettings : SettingsBase
{
public bool EnableAnyStartDate { get; set; }
public List<TechMonitors> VisibleMonitors { get; set; }
public bool DisplayAnnotations { get; set; }
public int DefaultDiffDays { get; set; }
public AnnotationsConfiguration AnnotationsConfiguration { get; set; }
public InsightsSettings()
{
DefaultDiffDays = 7;
VisibleMonitors = new List<TechMonitors>();
AnnotationsConfiguration = AnnotationsConfiguration.CreateDefault();
}
}
}
|