namespace Content.Server.Cargo.Components;
///
/// This is used for marking containers as
/// containing goods for fulfilling bounties.
///
[RegisterComponent]
public sealed class CargoBountyLabelComponent : Component
{
///
/// The ID for the bounty this label corresponds to.
///
[DataField("id"), ViewVariables(VVAccess.ReadWrite)]
public int Id;
///
/// Used to prevent recursion in calculating the price.
///
public bool Calculating;
}