forked from Vault-Overseers/nuclear-14
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNoteType.cs
38 lines (32 loc) · 950 Bytes
/
NoteType.cs
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
namespace Content.Shared.Database;
/*
* Editing the numbers here may obliterate DB records, you have been warned.
* If you do have to edit the numbers for some reason, please create migrations.
* Adding new types is fine (or even renaming), but do not remove or change them.
*/
/// <summary>
/// Different types of notes
/// </summary>
public enum NoteType
{
/// <summary>
/// Normal note
/// </summary>
Note = 0,
/// <summary>
/// Watchlist, a secret note that gets shown to online admins every time a player connects
/// </summary>
Watchlist = 1,
/// <summary>
/// A message, type of note that gets explicitly shown to the player
/// </summary>
Message = 2,
/// <summary>
/// A server ban, converted to a shared note
/// </summary>
ServerBan = 3,
/// <summary>
/// A role ban, converted to a shared note
/// </summary>
RoleBan = 4,
}