From 1c49b5150a1b1b75a1e233294568960dcf9a6136 Mon Sep 17 00:00:00 2001 From: Eveldee Date: Sat, 23 Mar 2019 21:47:26 +0100 Subject: [PATCH] Rename Ping to PingCommand --- .../Communication/Commands/{Ping.cs => PingCommand.cs} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename PlantBox.Shared/Communication/Commands/{Ping.cs => PingCommand.cs} (78%) 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) {