1
0

ActiveSignalTimerComponent.cs 451 B

123456789101112131415
  1. using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
  2. namespace Content.Server.DeviceLinking.Components
  3. {
  4. [RegisterComponent]
  5. public sealed partial class ActiveSignalTimerComponent : Component
  6. {
  7. /// <summary>
  8. /// The time the timer triggers.
  9. /// </summary>
  10. [DataField("triggerTime", customTypeSerializer: typeof(TimeOffsetSerializer))]
  11. public TimeSpan TriggerTime;
  12. }
  13. }