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