1
0

NoteType.cs 950 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. namespace Content.Shared.Database;
  2. /*
  3. * Editing the numbers here may obliterate DB records, you have been warned.
  4. * If you do have to edit the numbers for some reason, please create migrations.
  5. * Adding new types is fine (or even renaming), but do not remove or change them.
  6. */
  7. /// <summary>
  8. /// Different types of notes
  9. /// </summary>
  10. public enum NoteType
  11. {
  12. /// <summary>
  13. /// Normal note
  14. /// </summary>
  15. Note = 0,
  16. /// <summary>
  17. /// Watchlist, a secret note that gets shown to online admins every time a player connects
  18. /// </summary>
  19. Watchlist = 1,
  20. /// <summary>
  21. /// A message, type of note that gets explicitly shown to the player
  22. /// </summary>
  23. Message = 2,
  24. /// <summary>
  25. /// A server ban, converted to a shared note
  26. /// </summary>
  27. ServerBan = 3,
  28. /// <summary>
  29. /// A role ban, converted to a shared note
  30. /// </summary>
  31. RoleBan = 4,
  32. }