diff --git a/Test.GBase/Test.GBase.csproj b/Test.GBase/Test.GBase.csproj
index 83b8ff5..a366ef6 100644
--- a/Test.GBase/Test.GBase.csproj
+++ b/Test.GBase/Test.GBase.csproj
@@ -18,4 +18,8 @@
+
+
+
+
diff --git a/Test.GBase/TestClasses/Foo.cs b/Test.GBase/TestClasses/Foo.cs
new file mode 100644
index 0000000..4ff2362
--- /dev/null
+++ b/Test.GBase/TestClasses/Foo.cs
@@ -0,0 +1,15 @@
+// Author: Gockner, Simon
+// Created: 2020-01-27
+// Copyright(c) 2020 SimonG. All Rights Reserved.
+
+using GBase.Attributes;
+
+namespace Test.GBase.TestClasses
+{
+ [GBaseTable]
+ public class Foo
+ {
+ [GBaseEntry]
+ public string Name { get; set; }
+ }
+}
\ No newline at end of file