10 lines
208 B
C#
10 lines
208 B
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace NetworkResurrector.Server.Abstractions
|
|||
|
{
|
|||
|
public interface IWakeOnLanService
|
|||
|
{
|
|||
|
Task<(bool success, string message)> Wake(string macAddress);
|
|||
|
}
|
|||
|
}
|