mirror of
https://dev.azure.com/tstanciu94/NetworkResurrector/_git/NetworkResurrector
synced 2025-06-21 19:17:04 +03:00
15 lines
312 B
C#
15 lines
312 B
C#
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;
|
|
}
|
|
}
|
|
}
|