10 lines
221 B
C#
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);
|