mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-01-03 15:24:11 +00:00
10 lines
289 B
C#
10 lines
289 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DnsRebindBlocking;
|
|
|
|
public class AppConfig
|
|
{
|
|
public required bool Enabled { get; set; }
|
|
public required List<string> PrivateNetworks { get; init; } = new();
|
|
public required HashSet<string> PrivateDomains { get; init; } = new();
|
|
} |