namespace Content.Server.Chemistry.Components.DeleteOnSolutionEmptyComponent
{
///
/// Component that removes an item when a specific solution in it becomes empty.
///
[RegisterComponent]
public sealed partial class DeleteOnSolutionEmptyComponent : Component
{
///
/// The name of the solution of which to check emptiness
///
[DataField("solution")]
public string Solution = string.Empty;
}
}