namespace Content.Server.Nutrition.Components { /// /// Component that tags solution containers as trash when their contents have been emptied. /// Used for things like used ketchup packets or used syringes. /// [RegisterComponent] public sealed partial class TrashOnSolutionEmptyComponent : Component { /// /// The name of the solution of which to check emptiness /// [DataField("solution")] public string Solution { get; set; } = string.Empty; } }