network-resurrector/NetworkResurrector.Application/Events/MachineShutdown.cs

19 lines
384 B
C#
Raw Normal View History

2020-11-28 20:06:43 +02:00
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;
}
}
}