From 246536932a4ce1f6eca4d32510c4bc10c15f6df4 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Fri, 24 Jan 2020 16:14:26 +0100 Subject: [PATCH] - add settings interface --- GBase/Interfaces/Settings/IGBaseSettings.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 GBase/Interfaces/Settings/IGBaseSettings.cs diff --git a/GBase/Interfaces/Settings/IGBaseSettings.cs b/GBase/Interfaces/Settings/IGBaseSettings.cs new file mode 100644 index 0000000..3cb2d9d --- /dev/null +++ b/GBase/Interfaces/Settings/IGBaseSettings.cs @@ -0,0 +1,14 @@ +// Author: Gockner, Simon +// Created: 2020-01-24 +// Copyright(c) 2020 SimonG. All Rights Reserved. + +namespace GBase.Interfaces.Settings +{ + /// + /// Settings of a instance + /// + public interface IGBaseSettings + { + + } +} \ No newline at end of file