From 55ae13fe337f39996e14c5c61c89294676236af7 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Mon, 27 Jan 2020 11:46:22 +0100 Subject: [PATCH] - add first implementation of GBaseEntry --- GBase/GBaseEntry.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GBase/GBaseEntry.cs diff --git a/GBase/GBaseEntry.cs b/GBase/GBaseEntry.cs new file mode 100644 index 0000000..31b7351 --- /dev/null +++ b/GBase/GBaseEntry.cs @@ -0,0 +1,22 @@ +// Author: Gockner, Simon +// Created: 2020-01-27 +// Copyright(c) 2020 SimonG. All Rights Reserved. + +using GBase.Interfaces; + +namespace GBase +{ + /// + /// An entry of a + /// + public class GBaseEntry : IGBaseEntry + { + /// + /// An entry of a + /// + public GBaseEntry() + { + + } + } +} \ No newline at end of file