2022-06-23 14:36:47 +10:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Cargo.Events;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove order from database.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class CargoConsoleRemoveOrderMessage : BoundUserInterfaceMessage
|
|
|
|
|
{
|
2023-03-05 04:27:30 +00:00
|
|
|
public int OrderId;
|
2022-06-23 14:36:47 +10:00
|
|
|
|
2023-03-05 04:27:30 +00:00
|
|
|
public CargoConsoleRemoveOrderMessage(int orderId)
|
2022-06-23 14:36:47 +10:00
|
|
|
{
|
2023-03-05 04:27:30 +00:00
|
|
|
OrderId = orderId;
|
2022-06-23 14:36:47 +10:00
|
|
|
}
|
2023-01-15 01:49:00 +00:00
|
|
|
}
|