From 4acf0bc23bedd321317206da8a558e3a6609af7e Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Mon, 10 Feb 2020 14:40:01 +0100 Subject: [PATCH] - add GBaseClient class and interface --- GBase.Client/GBaseClient.cs | 18 ++++++++++++++++++ GBase.Client/Interfaces/IGBaseClient.cs | 11 +++++++++++ 2 files changed, 29 insertions(+) create mode 100644 GBase.Client/GBaseClient.cs create mode 100644 GBase.Client/Interfaces/IGBaseClient.cs diff --git a/GBase.Client/GBaseClient.cs b/GBase.Client/GBaseClient.cs new file mode 100644 index 0000000..86aa6c9 --- /dev/null +++ b/GBase.Client/GBaseClient.cs @@ -0,0 +1,18 @@ +// Author: Gockner, Simon +// Created: 2020-02-10 +// Copyright(c) 2020 SimonG. All Rights Reserved. + +using GBase.Client.Interfaces; + +namespace GBase.Client +{ + public class GBaseClient : IGBaseClient + { + private readonly IGBaseClientSettings _settings; + + public GBaseClient(IGBaseClientSettings settings) + { + _settings = settings; + } + } +} \ No newline at end of file diff --git a/GBase.Client/Interfaces/IGBaseClient.cs b/GBase.Client/Interfaces/IGBaseClient.cs new file mode 100644 index 0000000..34a623b --- /dev/null +++ b/GBase.Client/Interfaces/IGBaseClient.cs @@ -0,0 +1,11 @@ +// Author: Gockner, Simon +// Created: 2020-02-10 +// Copyright(c) 2020 SimonG. All Rights Reserved. + +namespace GBase.Client.Interfaces +{ + public interface IGBaseClient + { + + } +} \ No newline at end of file