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.
*/
///
/// Different types of notes
///
public enum NoteType
{
///
/// Normal note
///
Note = 0,
///
/// Watchlist, a secret note that gets shown to online admins every time a player connects
///
Watchlist = 1,
///
/// A message, type of note that gets explicitly shown to the player
///
Message = 2,
///
/// A server ban, converted to a shared note
///
ServerBan = 3,
///
/// A role ban, converted to a shared note
///
RoleBan = 4,
}