Files
tbd-station-14/Content.Shared/Security/SecurityStatus.cs
2024-02-04 19:29:35 -04:00

16 lines
313 B
C#

namespace Content.Shared.Security;
/// <summary>
/// Status used in Criminal Records.
///
/// None - the default value
/// Wanted - the person is being wanted by security
/// Detained - the person is detained by security
/// </summary>
public enum SecurityStatus : byte
{
None,
Wanted,
Detained
}