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(); } } }