network-resurrector/NetworkResurrector.Abstract.../IWakeOnLanService.cs

10 lines
201 B
C#
Raw Normal View History

2020-11-25 17:01:14 +02:00
using System.Threading.Tasks;
namespace NetworkResurrector.Abstractions
{
public interface IWakeOnLanService
{
Task<(bool success, string message)> Wake(string macAddress);
}
}