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