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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Tango Observables Generator
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. Do not modify!
// </auto-generated>
//------------------------------------------------------------------------------
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>
/// (Machine Studio versions publisher.)
/// </summary>
[Description("Machine Studio versions publisher.")]
MachineStudioPublisher = 4,
/// <summary>
/// (Machine Studio Software Developer)
/// </summary>
[Description("Machine Studio Software Developer")]
MachineStudioDeveloper = 5,
/// <summary>
/// (Standard PPC User)
/// </summary>
[Description("Standard PPC User")]
PPCUser = 9,
/// <summary>
/// (Manages organizations users and roles)
/// </summary>
[Description("Manages organizations users and roles")]
UsersAndRolesManager = 7,
/// <summary>
/// (Color adjustment & calibration algorithms developer )
/// </summary>
[Description("Color adjustment & calibration algorithms developer ")]
ColorScientist = 8,
/// <summary>
/// (Twine Research and development)
/// </summary>
[Description("Twine Research and development")]
Researcher = 3,
/// <summary>
/// (Twine Software Developer)
/// </summary>
[Description("Twine Software Developer")]
SoftwareDeveloper = 6,
/// <summary>
/// (Allows running machine studio.)
/// </summary>
[Description("Allows running machine studio.")]
MachineStudioUser = 14,
/// <summary>
/// (Twine color capture application tester/user.)
/// </summary>
[Description("Twine color capture application tester/user.")]
TCCUser = 15,
/// <summary>
/// (Catalogs Manager)
/// </summary>
[Description("Catalogs Manager")]
CatalogsManager = 16,
/// <summary>
/// (PPC Application Publisher)
/// </summary>
[Description("PPC Application Publisher")]
PPCPublisher = 13,
}
}
|