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

15 lines
312 B
C#
Raw Normal View History

2020-11-28 17:03:50 +02:00
namespace NetworkResurrector.Application.Events
{
public class MachinePinged
{
public bool Success { get; }
public string Status { get; }
public MachinePinged(bool success, string status)
{
Success = success;
Status = status;
}
}
}