diff --git a/DnsServerCore.ApplicationCommon/IDnsServer.cs b/DnsServerCore.ApplicationCommon/IDnsServer.cs
index 1befce43..6da89b49 100644
--- a/DnsServerCore.ApplicationCommon/IDnsServer.cs
+++ b/DnsServerCore.ApplicationCommon/IDnsServer.cs
@@ -1,6 +1,6 @@
/*
Technitium DNS Server
-Copyright (C) 2023 Shreyas Zare (shreyas@technitium.com)
+Copyright (C) 2024 Shreyas Zare (shreyas@technitium.com)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -18,6 +18,7 @@ along with this program. If not, see .
*/
using System;
+using System.Net.Mail;
using System.Threading.Tasks;
using TechnitiumLibrary.Net.Dns;
using TechnitiumLibrary.Net.Proxy;
@@ -74,6 +75,11 @@ namespace DnsServerCore.ApplicationCommon
///
string ServerDomain { get; }
+ ///
+ /// The default responsible person email address for this DNS Server.
+ ///
+ MailAddress ResponsiblePerson { get; }
+
///
/// The DNS cache object which provides direct access to the DNS server cache.
///