// Author: Gockner, Simon
// Created: 2020-02-12
// Copyright(c) 2020 SimonG. All Rights Reserved.
using GBase.Client.Interfaces;
namespace GBase.Client.Factories
{
///
/// Factory for the
///
public interface IGBaseClientFactory
{
///
/// Creates an
///
/// The for this client
/// A newly created instance of the implementation for
IGBaseClient Create(IGBaseClientSettings settings);
}
}