tgstation-server 5.12.7
The /tg/station 13 server suite
Loading...
Searching...
No Matches
ChatBotRights.cs
Go to the documentation of this file.
1using System;
2
4{
8 [Flags]
9 public enum ChatBotRights : ulong
10 {
14 None = 0,
15
19 WriteEnabled = 1 << 0,
20
24 WriteProvider = 1 << 1,
25
29 WriteChannels = 1 << 2,
30
34 WriteConnectionString = 1 << 3,
35
39 ReadConnectionString = 1 << 4,
40
44 Read = 1 << 5,
45
49 Create = 1 << 6,
50
54 Delete = 1 << 7,
55
59 WriteName = 1 << 8,
60
64 WriteReconnectionInterval = 1 << 9,
65
69 WriteChannelLimit = 1 << 10,
70 }
71}
ChatBotRights
Rights for chat bots.