mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 09:36:30 +00:00
13 lines
394 B
C#
13 lines
394 B
C#
namespace Azaion.Common.DTO;
|
|
|
|
public enum RoleEnum
|
|
{
|
|
None = 0,
|
|
Operator = 10, //only annotator is available. Could send annotations to queue.
|
|
Validator = 20, //annotator + dataset explorer. This role allows to receive annotations from the queue.
|
|
CompanionPC = 30,
|
|
Admin = 40, //
|
|
ResourceUploader = 50, //Uploading dll and ai models
|
|
ApiAdmin = 1000 //everything
|
|
}
|