using Content.Client.Chemistry.EntitySystems; using Content.Client.Chemistry.UI; namespace Content.Client.Chemistry.Components; /// /// Exposes a solution container's contents via a basic item status control. /// /// /// Shows the solution volume, max volume, and transfer amount. /// /// /// [RegisterComponent] public sealed partial class SolutionItemStatusComponent : Component { /// /// The ID of the solution that will be shown on the item status control. /// [DataField, ViewVariables(VVAccess.ReadWrite)] public string Solution = "default"; }