14 lines
378 B
C#
14 lines
378 B
C#
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
|
||
|
|
|
||
|
|
namespace Content.Server.Shuttles.Components;
|
||
|
|
|
||
|
|
[RegisterComponent]
|
||
|
|
public sealed class ArrivalsShuttleComponent : Component
|
||
|
|
{
|
||
|
|
[DataField("station")]
|
||
|
|
public EntityUid Station;
|
||
|
|
|
||
|
|
[DataField("nextTransfer", customTypeSerializer:typeof(TimeOffsetSerializer))]
|
||
|
|
public TimeSpan NextTransfer;
|
||
|
|
}
|