namespace Content.Shared.Database { /// /// Kinds of severity that a note can have /// public enum NoteSeverity { /// /// No severity, displays a checkmark /// None = 0, /// /// Minor severity, displays a minus /// Minor = 1, /// /// Medium severity, displays one exclamation mark /// Medium = 2, /// /// High severity, displays three exclamation marks /// High = 3, } }