diff --git a/PlantBox.Shared/Communication/Commands/Ping.cs b/PlantBox.Shared/Communication/Commands/PingCommand.cs similarity index 78% rename from PlantBox.Shared/Communication/Commands/Ping.cs rename to PlantBox.Shared/Communication/Commands/PingCommand.cs index 8cd6a78..399cf2e 100644 --- a/PlantBox.Shared/Communication/Commands/Ping.cs +++ b/PlantBox.Shared/Communication/Commands/PingCommand.cs @@ -4,20 +4,20 @@ using System.Text; namespace PlantBox.Shared.Communication.Commands { - public class Ping : CommandSerializable + public class PingCommand : CommandSerializable { public string Message { get; set; } - public Ping() + public PingCommand() { } - public Ping(string message) + public PingCommand(string message) { Message = message; } - public override Ping Deserialize(string[] arguments) + public override PingCommand Deserialize(string[] arguments) { if (arguments == null) {