11 lines
193 B
C#
11 lines
193 B
C#
|
|
using DotNetDDI.Services.Dhcp;
|
||
|
|
|
||
|
|
using nietras.SeparatedValues;
|
||
|
|
|
||
|
|
namespace DotNetDDI.Integrations.Kea;
|
||
|
|
|
||
|
|
public interface IKeaDhcpLeaseHandler
|
||
|
|
{
|
||
|
|
DhcpLeaseChange? Handle(in SepReader.Row row);
|
||
|
|
}
|