- add GBaseClient class and interface

pull/26/head
Simon Gockner 6 years ago
parent e57c0eb1ab
commit 4acf0bc23b
  1. 18
      GBase.Client/GBaseClient.cs
  2. 11
      GBase.Client/Interfaces/IGBaseClient.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;
}
}
}

@ -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
{
}
}
Loading…
Cancel
Save