blob: fe5a27848d8b84f88ab64df8b6324046ae85992a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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 object MachineViewProject { get; set; }
public TechnicianModule()
{
GraphsDuration = 10;
GraphsPullingInterval = 30;
}
}
}
|