1
0
Fork 0
netddi/Options/KeaDhcpOptions.cs
2025-01-29 23:53:57 +01:00

10 lines
221 B
C#

namespace DotNetDDI.Options;
public class KeaDhcpOptions
{
public KeaDhcpServerOptions? Dhcp4 { get; set; }
public KeaDhcpServerOptions? Dhcp6 { get; set; }
}
public record class KeaDhcpServerOptions(string Leases);