namespace Content.Shared.Cargo.Components;
///
/// This is used for pricing stacks of items.
///
[RegisterComponent]
public sealed partial class StackPriceComponent : Component
{
///
/// The price of the object this component is on, per unit.
///
[DataField("price", required: true)]
public double Price;
// Frontier: vend price
///
/// The price a full stack of this object sells for from a vendor.
///
[DataField]
public double VendPrice;
// End Frontier
}