16 lines
443 B
C#
16 lines
443 B
C#
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
|
|
|
|
namespace Content.Server.DeviceLinking.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed class ActiveSignalTimerComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The time the timer triggers.
|
|
/// </summary>
|
|
[DataField("triggerTime", customTypeSerializer: typeof(TimeOffsetSerializer))]
|
|
public TimeSpan TriggerTime;
|
|
}
|
|
}
|