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