Files
Quadraludi/LobbyServer/CommandPacket.cs
2019-05-03 20:24:02 +02:00

19 lines
403 B
C#

namespace LobbyServer
{
class CommandPacket
{
public Command Command { get; }
public string Content { get; }
public CommandPacket(Command command, string content)
{
Command = command;
Content = content;
}
public override string ToString()
{
return $"{Command.ToString()}\n{Content}";
}
}
}