- add server settings interface

pull/26/head
Simon G 6 years ago
parent 59dc1722b1
commit ec3a57de58
  1. 14
      GBase.Server/Interfaces/IGBaseServerSettings.cs

@ -0,0 +1,14 @@
// Author: Simon Gockner
// Created: 2020-02-08
// Copyright(c) 2020 SimonG. All Rights Reserved.
namespace GBase.Server.Interfaces
{
public interface IGBaseServerSettings
{
ServerProtocol Protocol { get; }
string Address { get; }
uint Port { get; }
string Endpoint { get; }
}
}
Loading…
Cancel
Save