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

28 lines
759 B
C#
Raw Permalink Normal View History

2024-02-04 23:29:35 +00:00
using Content.Server.StationRecords.Systems;
using Content.Shared.StationRecords;
2024-02-04 23:29:35 +00:00
namespace Content.Server.StationRecords.Components;
2024-02-04 23:29:35 +00:00
[RegisterComponent, Access(typeof(GeneralStationRecordConsoleSystem))]
public sealed partial class GeneralStationRecordConsoleComponent : Component
{
2024-02-04 23:29:35 +00:00
/// <summary>
/// Selected crewmember record id.
/// Station always uses the station that owns the console.
/// </summary>
[DataField]
public uint? ActiveKey;
/// <summary>
/// Qualities to filter a search by.
/// </summary>
[DataField]
public StationRecordsFilter? Filter;
/// <summary>
/// Whether this Records Console is able to delete entries.
/// </summary>
[DataField]
public bool CanDeleteEntries;
}