15 lines
494 B
C#
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;
|
|
}
|
|
}
|