1
0

TrashOnSolutionEmptyComponent.cs 564 B

12345678910111213141516
  1. namespace Content.Server.Nutrition.Components
  2. {
  3. /// <summary>
  4. /// Component that tags solution containers as trash when their contents have been emptied.
  5. /// Used for things like used ketchup packets or used syringes.
  6. /// </summary>
  7. [RegisterComponent]
  8. public sealed partial class TrashOnSolutionEmptyComponent : Component
  9. {
  10. /// <summary>
  11. /// The name of the solution of which to check emptiness
  12. /// </summary>
  13. [DataField("solution")]
  14. public string Solution { get; set; } = string.Empty;
  15. }
  16. }