From 0b8a62d3ec06c3102e0950789477090bb4f0bd58 Mon Sep 17 00:00:00 2001
From: "VKMTHD\\haraldmartini" <harald.martini@student.tugraz.at>
Date: Mon, 27 Mar 2023 11:24:45 +0200
Subject: [PATCH] removed SourceTypeVersion property from DataSource

---
 VectoCommon/VectoCommon/InputData/DeclarationInputData.cs | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/VectoCommon/VectoCommon/InputData/DeclarationInputData.cs b/VectoCommon/VectoCommon/InputData/DeclarationInputData.cs
index 201e19b047..92203b880c 100644
--- a/VectoCommon/VectoCommon/InputData/DeclarationInputData.cs
+++ b/VectoCommon/VectoCommon/InputData/DeclarationInputData.cs
@@ -80,16 +80,16 @@ namespace TUGraz.VectoCommon.InputData
 
 		public string SourceFile { get; set; }
 
+		/// <summary>
+		/// returns the version of the namespace uri
+		/// </summary>
 		public string SourceVersion { get; set; }
 
 		/// <summary>
 		/// In case of components loaded from XML files, this is the name of the XSD Type
 		/// </summary>
 		public string Type { get; set; }
-
-		public string SourceTypeVersion { get; set; }
-
-
+		
 
 		public string SourcePath => SourceFile != null ? Path.GetDirectoryName(Path.GetFullPath(SourceFile)) : null;
 	}
-- 
GitLab