network-resurrector/NetworkResurrector.Server.A.../Services/IPingService.cs

9 lines
228 B
C#
Raw Normal View History

2020-11-28 17:03:50 +02:00
using System.Threading.Tasks;
2021-04-06 02:17:11 +03:00
namespace NetworkResurrector.Server.Application.Services
2020-11-28 17:03:50 +02:00
{
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
}
}