network-resurrector/NetworkResurrector.WakeOnLa.../WakeOnLanService.cs

15 lines
348 B
C#

using NetworkResurrector.Abstractions;
using System;
using System.Threading.Tasks;
namespace NetworkResurrector.WakeOnLan.Nikeee
{
public class WakeOnLanService : IWakeOnLanService
{
public Task<(bool success, string message)> Wake(string macAddress)
{
throw new NotImplementedException();
}
}
}