using Content.Shared.EntityTable.EntitySelectors;
using Robust.Shared.Prototypes;
namespace Content.Shared.EntityTable;
///
/// This is a prototype for...
///
[Prototype]
public sealed partial class EntityTablePrototype : IPrototype
{
///
[IdDataField]
public string ID { get; private set; } = default!;
[DataField(required: true)]
public EntityTableSelector Table = default!;
}