// Author: Gockner, Simon // Created: 2020-02-10 // Copyright(c) 2020 SimonG. All Rights Reserved. using System.Net; namespace GBase.Api.Communication { public interface ICommunicationSettings { ServerProtocol Protocol { get; } IPAddress IpAddress { get; } int Port { get; } string Endpoint { get; } } }