diff --git a/ATxCommon/Serializables/DriveToCheck.cs b/ATxCommon/Serializables/DriveToCheck.cs
index 2c43e0c86220652eb492dee439d01293c3208f1e..279dcb86ea389b03d225efd3db6ffa2a02b6c002 100644
--- a/ATxCommon/Serializables/DriveToCheck.cs
+++ b/ATxCommon/Serializables/DriveToCheck.cs
@@ -1,6 +1,4 @@
-using System.Xml.Serialization;
-
-namespace ATxCommon.Serializables
+namespace ATxCommon.Serializables
 {
     /// <summary>
     /// Helper class for the nested SpaceMonitoring sections.
@@ -10,14 +8,11 @@ namespace ATxCommon.Serializables
         /// <summary>
         /// A drive name (single letter followed by a colon, e.g. "D:") to be monitored for space.
         /// </summary>
-        [XmlElement("DriveName")]
         public string DriveName { get; set; }
 
         /// <summary>
         /// Limit (in MB) of free space, lower values will trigger a notification.
         /// </summary>
-        /// Value is to be compared to DriveInfo.TotalFreeSpace, hence the same type (long).
-        [XmlElement("SpaceThreshold")]
         public long SpaceThreshold { get; set; }
     }
 }
\ No newline at end of file