criminal records revival (#22510)
This commit is contained in:
@@ -1,10 +1,21 @@
|
||||
using Content.Server.StationRecords.Systems;
|
||||
using Content.Shared.StationRecords;
|
||||
|
||||
namespace Content.Server.StationRecords;
|
||||
namespace Content.Server.StationRecords.Components;
|
||||
|
||||
[RegisterComponent]
|
||||
[RegisterComponent, Access(typeof(GeneralStationRecordConsoleSystem))]
|
||||
public sealed partial class GeneralStationRecordConsoleComponent : Component
|
||||
{
|
||||
public (NetEntity, uint)? ActiveKey { get; set; }
|
||||
public GeneralStationRecordsFilter? Filter { get; set; }
|
||||
/// <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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user