using Content.Server.Power.EntitySystems;
using Content.Shared.Power;
namespace Content.Server.Power.Components;
///
/// Necessary component for battery management UI for SMES/substations.
///
///
///
[RegisterComponent]
public sealed partial class BatteryInterfaceComponent : Component
{
///
/// The maximum charge rate users can configure through the UI.
///
[DataField]
public float MaxChargeRate;
///
/// The minimum charge rate users can configure through the UI.
///
[DataField]
public float MinChargeRate;
///
/// The maximum discharge rate users can configure through the UI.
///
[DataField]
public float MaxSupply;
///
/// The minimum discharge rate users can configure through the UI.
///
[DataField]
public float MinSupply;
}