using Content.Shared.EntityTable.EntitySelectors;
namespace Content.Shared.Containers;
///
/// Version of that utilizes
///
[RegisterComponent, Access(typeof(ContainerFillSystem))]
public sealed partial class EntityTableContainerFillComponent : Component
{
[DataField]
public Dictionary Containers = new();
}