blob: f86a73cfb79add79283de542fd574e31a7511b7e (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.ComponentModel;
namespace Tango.BL.Enumerations
{
public enum Roles
{
/// <summary>
/// (User with standard permissions)
/// </summary>
[Description("User with standard permissions")]
User = 0,
/// <summary>
/// (Twine administrator)
/// </summary>
[Description("Twine administrator")]
Administrator = 1,
/// <summary>
/// (Twine technician)
/// </summary>
[Description("Twine technician")]
Technician = 2,
/// <summary>
/// (Twine Research and development)
/// </summary>
[Description("Twine Research and development")]
MachineDeveloper = 3,
/// <summary>
/// (Publish new Machine Studio Versions)
/// </summary>
[Description("Publish new Machine Studio Versions")]
MachineStudioPublisher = 4,
/// <summary>
/// (Machine Studio Software Developer)
/// </summary>
[Description("Machine Studio Software Developer")]
MachineStudioDeveloper = 5,
/// <summary>
/// (Twine Software Developer)
/// </summary>
[Description("Twine Software Developer")]
SoftwareDeveloper = 6,
/// <summary>
/// (Manage organizations users and roles)
/// </summary>
[Description("Manage organizations users and roles")]
UsersAndRolesManager = 7,
/// <summary>
/// (Color adjustment & calibration algorithms developer )
/// </summary>
[Description("Color adjustment & calibration algorithms developer ")]
ColorScientist = 8,
}
}
|