using Content.Shared.Cargo.Prototypes;
using Robust.Shared.Prototypes;
namespace Content.Shared.Cargo.Components;
///
/// Makes a sellable object portion out its value to a specified department rather than the station default
///
[RegisterComponent]
public sealed partial class OverrideSellComponent : Component
{
///
/// The account that will receive the primary funds from this being sold.
///
[DataField(required: true)]
public ProtoId OverrideAccount;
}