Files
annotations/Azaion.Common/DTO/RoleEnum.cs
T
Alex Bezdieniezhnykh 60519461a1 rework to have only 1 exe!
2024-12-04 20:51:26 +02:00

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
}