using Content.Shared.Cargo.Prototypes; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; namespace Content.Shared.Cargo.BUI; [NetSerializable, Serializable] public sealed class CargoConsoleInterfaceState : BoundUserInterfaceState { public string Name; public int Count; public int Capacity; public NetEntity Station; public List Orders; public List> Products; public CargoConsoleInterfaceState(string name, int count, int capacity, NetEntity station, List orders, List> products) { Name = name; Count = count; Capacity = capacity; Station = station; Orders = orders; Products = products; } }