// Author: Gockner, Simon // Created: 2020-02-10 // Copyright(c) 2020 SimonG. All Rights Reserved. using System.Net; namespace GBase.Api.Communication { /// /// Settings for a client-server communication /// public interface ICommunicationSettings { /// /// The used /// ServerProtocol Protocol { get; } /// /// The used /// IPAddress IpAddress { get; } /// /// The used port /// int Port { get; } /// /// The used endpoint for the GBase /// string GBaseEndpoint { get; } /// /// The used endpoint for the GBaseTable /// string GBaseTableEndpoint { get; } /// /// The used endpoint for the GBaseColumn /// string GBaseColumnEndpoint { get; } } }