6
StarHorizon_Public/Content.Server/Chemistry/Components/DeleteOnSolutionEmptyComponent.cs
2025-12-18 02:55:17 +03:00

16 lines
503 B
C#

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