using System.Threading; namespace Content.Server.Forensics { /// /// Used to take a sample of someone's fingerprints. /// [RegisterComponent] public sealed class ForensicPadComponent : Component { public CancellationTokenSource? CancelToken; [DataField("scanDelay")] public float ScanDelay = 3.0f; public bool Used = false; public String Sample = string.Empty; } }