network-resurrector/NetworkResurrector.Server.A.../IWakeOnLanService.cs

10 lines
208 B
C#
Raw Normal View History

2020-11-25 17:01:14 +02:00
using System.Threading.Tasks;
2021-04-06 02:12:58 +03:00
namespace NetworkResurrector.Server.Abstractions
2020-11-25 17:01:14 +02:00
{
public interface IWakeOnLanService
{
Task<(bool success, string message)> Wake(string macAddress);
}
}