using Content.Shared.Cargo.Prototypes; using Robust.Shared.Prototypes; namespace Content.Shared.Cargo.Components; /// /// Holds data for an order slip required for insertion into a console /// [RegisterComponent] public sealed partial class CargoSlipComponent : Component { /// /// The requested product /// [DataField] public ProtoId Product; /// /// The provided value for the requester form field /// [DataField] public string Requester; /// /// The provided value for the reason form field /// [DataField] public string Reason; /// /// How many of the product to order /// [DataField] public int OrderQuantity; /// /// How many of the product to order /// [DataField] public ProtoId Account; }