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