Files
crystall-punk-14/Content.Server/StationRecords/Components/StationRecordKeyStorageComponent.cs

14 lines
306 B
C#
Raw Normal View History

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;
}