15 lines
348 B
C#
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();
|
|
}
|
|
}
|
|
}
|