diff --git a/ATxCommon/Serializables/ServiceConfig.cs b/ATxCommon/Serializables/ServiceConfig.cs
index 10d90df2310ea7c945b9ea45b787baa5db0fd37b..9fca6a7bcabee39ecaa6e29745952730e0c336e3 100644
--- a/ATxCommon/Serializables/ServiceConfig.cs
+++ b/ATxCommon/Serializables/ServiceConfig.cs
@@ -221,41 +221,31 @@ namespace ATxCommon.Serializables
         /// The full path to the incoming directory.
         /// </summary>
         [XmlIgnore]
-        public string IncomingPath {
-            get { return Path.Combine(SourceDrive, IncomingDirectory); }
-        }
+        public string IncomingPath => Path.Combine(SourceDrive, IncomingDirectory);
 
         /// <summary>
         /// The full path to the managed directory.
         /// </summary>
         [XmlIgnore]
-        public string ManagedPath {
-            get { return Path.Combine(SourceDrive, ManagedDirectory); }
-        }
+        public string ManagedPath => Path.Combine(SourceDrive, ManagedDirectory);
 
         /// <summary>
         /// The full path to the processing directory.
         /// </summary>
         [XmlIgnore]
-        public string ProcessingPath {
-            get { return Path.Combine(ManagedPath, "PROCESSING"); }
-        }
+        public string ProcessingPath => Path.Combine(ManagedPath, "PROCESSING");
 
         /// <summary>
         /// The full path to the done directory / grace location.
         /// </summary>
         [XmlIgnore]
-        public string DonePath {
-            get { return Path.Combine(ManagedPath, "DONE"); }
-        }
+        public string DonePath => Path.Combine(ManagedPath, "DONE");
 
         /// <summary>
         /// The full path to the directory for unmatched user directories.
         /// </summary>
         [XmlIgnore]
-        public string UnmatchedPath {
-            get { return Path.Combine(ManagedPath, "UNMATCHED"); }
-        }
+        public string UnmatchedPath => Path.Combine(ManagedPath, "UNMATCHED");
 
         #endregion