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

15 lines
310 B
C#
Raw Normal View History

2020-11-25 17:01:14 +02:00
namespace NetworkResurrector.Application.Events
{
public class MachineWaked
{
public bool Success { get; }
public string Status { get; }
public MachineWaked(bool success, string status)
{
Success = success;
Status = status;
}
}
}