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