using NDB.Application.DataContracts; using NetworkResurrector.Application.Events; using System; namespace NetworkResurrector.Application.Commands { public class ShutdownMachine : Command { public string IPAddressOrMachineName { get; set; } public ShutdownMachine(string ipAddressOrMachineName) : base(new Metadata() { CorrelationId = Guid.NewGuid() }) { IPAddressOrMachineName = ipAddressOrMachineName; } } }