22 lines
489 B
C#
22 lines
489 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.StationRecords;
|
|
|
|
// Station record keys. These should be stored somewhere,
|
|
// preferably within an ID card.
|
|
[Serializable, NetSerializable]
|
|
public readonly struct StationRecordKey
|
|
{
|
|
[ViewVariables]
|
|
public uint ID { get; }
|
|
|
|
[ViewVariables]
|
|
public EntityUid OriginStation { get; }
|
|
|
|
public StationRecordKey(uint id, EntityUid originStation)
|
|
{
|
|
ID = id;
|
|
OriginStation = originStation;
|
|
}
|
|
}
|