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