namespace Content.Shared.Power;
///
/// Component for a powered machine that slowly powers on and off over a period of time.
///
public abstract partial class SharedPowerChargeComponent : Component
{
///
/// The title used for the default charged machine window if used
///
[DataField]
public LocId WindowTitle { get; set; } = string.Empty;
// Frontier: actions
///
/// Show a action button on UI
///
[DataField]
public bool ActionUI { get; set; } = false;
// End Frontier: actions
}