blob: 57eb03440de07b77cd39603fb0979e5fb6a10918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Settings.MachineStudioSettings
{
public class TechnicianModule
{
public int GraphsDuration { get; set; }
public int GraphsPullingInterval { get; set; }
public TechnicianModule()
{
GraphsDuration = 10;
GraphsPullingInterval = 30;
}
}
}
|