namespace Content.Server._DV.Cargo.Components;
///
/// This is used for modifying the sell price of an entity.
///
[RegisterComponent]
public sealed partial class PriceModifierComponent : Component
{
///
/// The price modifier.
///
[DataField]
public float Modifier;
}