namespace Content.Shared.Chemistry.Components; /// /// Represents a container that also contains a solution. /// This means that reactive entities react when inserted into the container. /// [RegisterComponent] public sealed partial class ReactiveContainerComponent : Component { /// /// The container that holds the solution. /// [DataField(required: true)] public string Container = default!; /// /// The solution in the container. /// [DataField(required: true)] public string Solution = default!; }