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

9 lines
221 B
C#
Raw Normal View History

2020-11-28 17:03:50 +02:00
using System.Threading.Tasks;
namespace NetworkResurrector.Application.Services
{
public interface IPingService
{
2020-11-28 20:06:43 +02:00
Task<(bool success, string status)> PingMachine(string ipAddressOrMachineName);
2020-11-28 17:03:50 +02:00
}
}