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