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