fish-station/Content.Shared/_Sunrise/CommandConsole/CommandConsoleExecuteBoundUserInterfaceMessage.cs

15 lines
494 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared._Sunrise.CommandConsole;
[Serializable, NetSerializable]
public sealed class CommandConsoleExecuteBoundUserInterfaceMessage : BoundUserInterfaceMessage // эти имена переменных меня убивают
{
public string CommandInputText { get; set; } = string.Empty;
public CommandConsoleExecuteBoundUserInterfaceMessage(string commandInputText)
{
CommandInputText = commandInputText;
}
}