diff --git a/DnsApplicationCommon/IDnsServer.cs b/DnsApplicationCommon/IDnsServer.cs
index 6db9e389..9d1161c9 100644
--- a/DnsApplicationCommon/IDnsServer.cs
+++ b/DnsApplicationCommon/IDnsServer.cs
@@ -49,15 +49,20 @@ namespace DnsApplicationCommon
void WriteLog(Exception ex);
///
- /// The primary domain name used by this DNS Server to identify itself.
+ /// The name of this installed application.
///
- string ServerDomain { get; }
+ string ApplicationName { get; }
///
/// The folder where this application is saved on the disk. Can be used to create temp files, read/write files, etc. for this application.
///
string ApplicationFolder { get; }
+ ///
+ /// The primary domain name used by this DNS Server to identify itself.
+ ///
+ string ServerDomain { get; }
+
///
/// The DNS cache object which provides direct access to the DNS server cache.
///