using NetworkResurrector.Application.Events; using System; namespace NetworkResurrector.Application.Commands { public class PingMachine : Command { public string IPAddress { get; set; } public PingMachine(string ipAddress) : base(new Metadata() { CorrelationId = Guid.NewGuid() }) { IPAddress = ipAddress; } } }