diff --git a/GBase.Api/Communication/ICommunicationSettings.cs b/GBase.Api/Communication/ICommunicationSettings.cs new file mode 100644 index 0000000..184acfb --- /dev/null +++ b/GBase.Api/Communication/ICommunicationSettings.cs @@ -0,0 +1,16 @@ +// 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; } + } +} \ No newline at end of file