mirror of
https://dev.azure.com/tstanciu94/NetworkResurrector/_git/NetworkResurrector
synced 2025-06-21 19:17:04 +03:00
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);
|
|
}
|
|
}
|