6
StarHorizon_Public/Content.Shared/_NF/Shipyard/Events/ShipyardConsoleSellMessage.cs
2026-01-24 12:49:55 +03:00

15 lines
435 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared._NF.Shipyard.Events;
/// <summary>
/// Sell a Vessel from the console. The button holds no info and is doing a validation check for a deed client side, but we will still check on the server.
/// </summary>
[Serializable, NetSerializable]
public sealed class ShipyardConsoleSellMessage : BoundUserInterfaceMessage
{
public ShipyardConsoleSellMessage()
{
}
}