17 lines
487 B
C#
17 lines
487 B
C#
using NDB.Application.DataContracts;
|
|
using NetworkResurrector.Application.Events;
|
|
using System;
|
|
|
|
namespace NetworkResurrector.Application.Commands
|
|
{
|
|
public class ShutdownMachine : Command<MachineShutdown>
|
|
{
|
|
public string IPAddressOrMachineName { get; set; }
|
|
|
|
public ShutdownMachine(string ipAddressOrMachineName) : base(new Metadata() { CorrelationId = Guid.NewGuid() })
|
|
{
|
|
IPAddressOrMachineName = ipAddressOrMachineName;
|
|
}
|
|
}
|
|
}
|