namespace Content.Server.Containers
{
///
/// Empties a list of containers when the machine is deconstructed via MachineDeconstructedEvent.
///
[RegisterComponent]
public sealed partial class EmptyOnMachineDeconstructComponent : Component
{
[DataField("containers")]
public HashSet Containers { get; set; } = new();
}
}