10 lines
185 B
C#
10 lines
185 B
C#
|
|
using DotNetDDI.Integrations.Kea;
|
||
|
|
using DotNetDDI.Options;
|
||
|
|
|
||
|
|
namespace DotNetDDI.Services.Dhcp;
|
||
|
|
|
||
|
|
public interface IDhcpWatcherFactory
|
||
|
|
{
|
||
|
|
KeaService KeaService(KeaDhcpOptions options);
|
||
|
|
}
|