1
0
Fork 0
netddi/Options/KeaDhcpOptions.cs

11 lines
221 B
C#
Raw Permalink Normal View History

2025-01-29 23:53:57 +01:00
namespace DotNetDDI.Options;
public class KeaDhcpOptions
{
public KeaDhcpServerOptions? Dhcp4 { get; set; }
public KeaDhcpServerOptions? Dhcp6 { get; set; }
}
public record class KeaDhcpServerOptions(string Leases);