namespace Content.Server._Goobstation.Spawn.Components;
///
/// Ensures that related entity will be on station (like NTR or BSO lockers) and will be not duplicate.
/// If station have unique entity - item with this component will be deleted.
///
[RegisterComponent]
public sealed partial class UniqueEntityCheckerComponent : Component
{
///
/// Name of marker in UniqueEntityMarker
///
[DataField]
public string? MarkerName;
}