- add iCommunicationSettings base interface

pull/26/head
Simon Gockner 6 years ago
parent b76d95e08d
commit 5ec67ba154
  1. 16
      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; }
}
}
Loading…
Cancel
Save