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