// Author: Gockner, Simon
// Created: 2020-02-10
// Copyright(c) 2020 SimonG. All Rights Reserved.
using GBase.Api.Communication;
namespace GBase.Client.Interfaces
{
///
/// Settings for an
///
public interface IGBaseClientSettings : ICommunicationSettings
{
///
/// Complete GBase endpoint address based on the
///
string ServerProtocolGBaseEndpointAddress { get; }
///
/// Complete GBaseTable endpoint address based on the
///
string ServerProtocolGBaseTableEndpointAddress { get; }
///
/// Complete GBaseEntry endpoint address based on the
///
string ServerProtocolGBaseEntryEndpointAddress { get; }
}
}