namespace Content.Server.Cargo.Components;
///
/// This is used for setting a static, unchanging price for an object.
///
[RegisterComponent]
public sealed partial class StaticPriceComponent : Component
{
///
/// The price of the object this component is on.
///
[DataField("price", required: true)]
public double Price;
}