Files
crystall-punk-14/Content.Shared/Security/SecurityStatus.cs

22 lines
520 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,
Suspected,
2024-02-04 23:29:35 +00:00
Wanted,
Detained,
Paroled,
Discharged
2024-02-04 23:29:35 +00:00
}