19 lines
403 B
C#
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}";
|
|
}
|
|
}
|
|
} |