2023-09-27 13:37:45 +06:00
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations;
|
|
|
|
|
|
2024-01-28 18:18:54 +07:00
|
|
|
namespace Content.Server._White.Medical.BodyScanner
|
2023-09-27 13:37:45 +06:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class ActiveBodyScannerConsoleComponent : Component
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// When did the scanning start?
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField("startTime", customTypeSerializer: typeof(TimespanSerializer))]
|
|
|
|
|
public TimeSpan StartTime;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// What is being scanned?
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public EntityUid PatientUid;
|
|
|
|
|
}
|
|
|
|
|
}
|