Index: Ringtoets/Common/src/Ringtoets.Common.Data/AssessmentSection/WmtsBackgroundDataConfiguration.cs
===================================================================
diff -u -rf372658df422303abcebd8206c8127b420a3ccc2 -ra1bba29ba0d84061cca88da8324957087d564db9
--- Ringtoets/Common/src/Ringtoets.Common.Data/AssessmentSection/WmtsBackgroundDataConfiguration.cs (.../WmtsBackgroundDataConfiguration.cs) (revision f372658df422303abcebd8206c8127b420a3ccc2)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/AssessmentSection/WmtsBackgroundDataConfiguration.cs (.../WmtsBackgroundDataConfiguration.cs) (revision a1bba29ba0d84061cca88da8324957087d564db9)
@@ -62,6 +62,26 @@
}
///
+ /// Gets if the configuration is ready to use as a tile source.
+ ///
+ public bool IsConfigured { get; private set; }
+
+ ///
+ /// Gets the URL to the capabilities of the WMTS.
+ ///
+ public string SourceCapabilitiesUrl { get; private set; }
+
+ ///
+ /// Gets the name of the capability to use.
+ ///
+ public string SelectedCapabilityIdentifier { get; private set; }
+
+ ///
+ /// Gets the MIME-type specification of the preferred tile image format.
+ ///
+ public string PreferredFormat { get; private set; }
+
+ ///
/// Initializes the properties of the corresponding
/// to an unconfigured WMTS tile source.
///
@@ -120,25 +140,5 @@
SelectedCapabilityIdentifier = selectedCapabilityIdentifier;
PreferredFormat = preferredFormat;
}
-
- ///
- /// Gets if the configuration is ready to use as a tile source.
- ///
- public bool IsConfigured { get; private set; }
-
- ///
- /// Gets the URL to the capabilities of the WMTS.
- ///
- public string SourceCapabilitiesUrl { get; private set; }
-
- ///
- /// Gets the name of the capability to use.
- ///
- public string SelectedCapabilityIdentifier { get; private set; }
-
- ///
- /// Gets the MIME-type specification of the preferred tile image format.
- ///
- public string PreferredFormat { get; private set; }
}
}
\ No newline at end of file