Files

26 lines
593 B
C#
Raw Permalink Normal View History

2024-02-04 23:29:35 +00:00
namespace Content.Shared.Security;
/// <summary>
/// Status used in Criminal Records.
///
/// None - the default value
/// Suspected - the person is suspected of doing something illegal
2024-02-04 23:29:35 +00:00
/// Wanted - the person is being wanted by security
/// Detained - the person is detained by security
/// Paroled - the person is on parole
/// Discharged - the person has been released from prison
2024-02-04 23:29:35 +00:00
/// </summary>
public enum SecurityStatus : byte
{
None, // WD start
2024-02-04 23:29:35 +00:00
Wanted,
Suspected,
Demote,
Search,
Monitoring,
Detained,
Paroled,
Released,
Execute // WD end
2024-02-04 23:29:35 +00:00
}