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