16 lines
313 B
C#
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
|
|
}
|