14 lines
306 B
C#
14 lines
306 B
C#
using Content.Shared.StationRecords;
|
|
|
|
namespace Content.Server.StationRecords;
|
|
|
|
[RegisterComponent]
|
|
public sealed class StationRecordKeyStorageComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The key stored in this component.
|
|
/// </summary>
|
|
[ViewVariables]
|
|
public StationRecordKey? Key;
|
|
}
|