using Robust.Shared.Serialization.TypeSerializers.Implementations;
namespace Content.Server._White.Medical.BodyScanner
{
[RegisterComponent]
public sealed partial class ActiveBodyScannerConsoleComponent : Component
{
///
/// When did the scanning start?
///
[DataField("startTime", customTypeSerializer: typeof(TimespanSerializer))]
public TimeSpan StartTime;
///
/// What is being scanned?
///
[ViewVariables]
public EntityUid PatientUid;
}
}