namespace Content.Server.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; }