using System; using System.Collections.Generic; using System.Text; namespace NetworkResurrector.Application.Events { public class MachineShutdown { public bool Success { get; } public string Status { get; } public MachineShutdown(bool success, string status) { Success = success; Status = status; } } }