1
0
Fork 0
netddi/Services/Dhcp/IDhcpWatcherFactory.cs
2025-01-29 23:53:57 +01:00

9 lines
185 B
C#

using DotNetDDI.Integrations.Kea;
using DotNetDDI.Options;
namespace DotNetDDI.Services.Dhcp;
public interface IDhcpWatcherFactory
{
KeaService KeaService(KeaDhcpOptions options);
}