Files
OldThink/Content.Shared/Security/SecurityStatus.cs
keslik 775fd5e96c [Tweak] Security statuses micro update (#629)
* Tweak: Sec statuses update WIP

* fix: Для новых статусов требуется указать причину

* Fix: for review
2024-08-16 23:46:26 +03:00

26 lines
593 B
C#

namespace Content.Shared.Security;
/// <summary>
/// Status used in Criminal Records.
///
/// None - the default value
/// Suspected - the person is suspected of doing something illegal
/// 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
/// </summary>
public enum SecurityStatus : byte
{
None, // WD start
Wanted,
Suspected,
Demote,
Search,
Monitoring,
Detained,
Paroled,
Released,
Execute // WD end
}