18 lines
384 B
C#
18 lines
384 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Cargo.Events;
|
|
|
|
/// <summary>
|
|
/// Set order in database as approved.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class CargoConsoleApproveOrderMessage : BoundUserInterfaceMessage
|
|
{
|
|
public int OrderId;
|
|
|
|
public CargoConsoleApproveOrderMessage(int orderId)
|
|
{
|
|
OrderId = orderId;
|
|
}
|
|
}
|