namespace Content.Shared.Power.Components;
///
/// Component for entities that want to increase their power usage to a working state when
/// a UI on the machine is open. Requires .
///
[RegisterComponent]
public sealed partial class UIPowerStateComponent : Component
{
///
/// List of UI keys that will trigger the working state.
/// If null, any UI open will trigger the working state.
///
[DataField]
public List? Keys;
}