diff --git a/GBase.Api/GBase.Api.xml b/GBase.Api/GBase.Api.xml
index aa58443..8dd3ae8 100644
--- a/GBase.Api/GBase.Api.xml
+++ b/GBase.Api/GBase.Api.xml
@@ -80,6 +80,18 @@
The for the given
Invalid string passed.
+
+
+ GBase object that allows conversion from
+
+
+
+
+
+ Initialize this from a given
+
+ The given
+
ServiceContract for the GBaseEntry
diff --git a/GBase.Api/IGBaseObject.cs b/GBase.Api/IGBaseObject.cs
new file mode 100644
index 0000000..689a8b9
--- /dev/null
+++ b/GBase.Api/IGBaseObject.cs
@@ -0,0 +1,19 @@
+// Author: Gockner, Simon
+// Created: 2020-02-14
+// Copyright(c) 2020 SimonG. All Rights Reserved.
+
+namespace GBase.Api
+{
+ ///
+ /// GBase object that allows conversion from
+ ///
+ ///
+ public interface IGBaseObject
+ {
+ ///
+ /// Initialize this from a given
+ ///
+ /// The given
+ void InitializeFromString(string @string);
+ }
+}
\ No newline at end of file