network-resurrector/NetworkResurrector.Application/Services/IPingService.cs

9 lines
221 B
C#

using System.Threading.Tasks;
namespace NetworkResurrector.Application.Services
{
public interface IPingService
{
Task<(bool success, string status)> PingMachine(string ipAddressOrMachineName);
}
}