From 671d9dc5483b7456cb763ca9f7d452a0ecfb2ca0 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 21 May 2022 13:01:40 +0530 Subject: [PATCH] AuthZoneInfo: added ApexZone internal property. --- DnsServerCore/Dns/Zones/AuthZoneInfo.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DnsServerCore/Dns/Zones/AuthZoneInfo.cs b/DnsServerCore/Dns/Zones/AuthZoneInfo.cs index 1bfb67d0..40cf5864 100644 --- a/DnsServerCore/Dns/Zones/AuthZoneInfo.cs +++ b/DnsServerCore/Dns/Zones/AuthZoneInfo.cs @@ -512,6 +512,9 @@ namespace DnsServerCore.Dns.Zones #region properties + internal ApexZone ApexZone + { get { return _apexZone; } } + public string Name { get { return _name; } }