// Author: Simon Gockner // Created: 2020-02-08 // Copyright(c) 2020 SimonG. All Rights Reserved. using System.Threading.Tasks; using GBase.Api.Communication; namespace GBase.Server.Interfaces { public interface IGBaseServerSettings : ICommunicationSettings { string LogFilePath { get; } string LogFileName { get; } Task ParseArguments(string[] args); } }