blob: 39014b04b89ae37a5f225be51f98c39049ee4a72 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.ComponentModel;
namespace Tango.Integration.Observables
{
public enum Permissions
{
/// <summary>
/// (Allows loading the technician module in Machine Studio)
/// </summary>
[Description("Allows loading the technician module in Machine Studio")]
RunTechnicianModule = 0,
/// <summary>
/// (Allows loading the developer module in Machine Studio)
/// </summary>
[Description("Allows loading the developer module in Machine Studio")]
RunDeveloperModule = 1,
/// <summary>
/// (Allows loading the database module in Machine Studio)
/// </summary>
[Description("Allows loading the database module in Machine Studio")]
RunDataBaseModule = 2,
/// <summary>
/// (Allows loading the synchronization module in machine studio)
/// </summary>
[Description("Allows loading the synchronization module in machine studio")]
RunSynchronizationModule = 3,
/// <summary>
/// (Allows loading the machine designer module in Machine Studio)
/// </summary>
[Description("Allows loading the machine designer module in Machine Studio")]
RunMachineDesignerModule = 4,
}
}
|