From 5ec67ba154c7d5774a1659f04e3eb86929a5ea2d Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Mon, 10 Feb 2020 14:16:55 +0100 Subject: [PATCH] - add iCommunicationSettings base interface --- .../Communication/ICommunicationSettings.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 GBase.Api/Communication/ICommunicationSettings.cs 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