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

16 lines
313 B
C#
Raw 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
/// Wanted - the person is being wanted by security
/// Detained - the person is detained by security
/// </summary>
public enum SecurityStatus : byte
{
None,
Wanted,
Detained
}