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-01-15 01:49:00 +00:00
|
|
|
public int OrderIndex;
|
2022-06-23 14:36:47 +10:00
|
|
|
|
2023-01-15 01:49:00 +00:00
|
|
|
public CargoConsoleRemoveOrderMessage(int orderIndex)
|
2022-06-23 14:36:47 +10:00
|
|
|
{
|
2023-01-15 01:49:00 +00:00
|
|
|
OrderIndex = orderIndex;
|
2022-06-23 14:36:47 +10:00
|
|
|
}
|
2023-01-15 01:49:00 +00:00
|
|
|
}
|