using Robust.Shared.Serialization; namespace Content.Shared.Cargo.BUI; [Serializable, NetSerializable] public sealed class CargoShuttleConsoleBoundUserInterfaceState : BoundUserInterfaceState { public string AccountName; public string ShuttleName; /// /// List of orders expected on the delivery. /// public List Orders; public CargoShuttleConsoleBoundUserInterfaceState( string accountName, string shuttleName, List orders) { AccountName = accountName; ShuttleName = shuttleName; Orders = orders; } }