namespace Content.Server.Mail.Components;
///
/// A placeholder for another entity, spawned when dropped or placed in someone's hands.
/// Useful for storing instant effect entities, e.g. smoke, in the mail.
///
[RegisterComponent]
public sealed partial class DelayedItemComponent : Component
{
///
/// The entity to replace this when opened or dropped.
///
[DataField]
public string Item = "None";
}