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