using Content.Shared.Cargo.Prototypes; using Robust.Shared.Prototypes; namespace Content.Server.Salvage.JobBoard; /// /// Marks a label for a bounty for a given salvage job board prototype. /// [RegisterComponent] public sealed partial class JobBoardLabelComponent : Component { /// /// The bounty corresponding to this label. /// [DataField] public ProtoId? JobId; }