From ecc225e3618d76d2da4b03ba7f028549ba46d82a Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Fri, 24 Jan 2020 16:25:58 +0100 Subject: [PATCH] - add IGBase entry --- GBase/Interfaces/IGBaseEntry.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 GBase/Interfaces/IGBaseEntry.cs diff --git a/GBase/Interfaces/IGBaseEntry.cs b/GBase/Interfaces/IGBaseEntry.cs new file mode 100644 index 0000000..a3c9595 --- /dev/null +++ b/GBase/Interfaces/IGBaseEntry.cs @@ -0,0 +1,14 @@ +// Author: Gockner, Simon +// Created: 2020-01-24 +// Copyright(c) 2020 SimonG. All Rights Reserved. + +namespace GBase.Interfaces +{ + /// + /// An entry of a + /// + public interface IGBaseEntry //TODO: Make entry generic (generic type is type of the value of the entry?) + { + + } +} \ No newline at end of file