using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using gehGassiApp.Domain.Common;
namespace gehGassiApp.Core.Interfaces
{
///
/// Schnittstellenbeschreibung für einen Service der Einstellungen verwalten kann
///
public interface ISettingsService
{
///
/// Holen der Appsettings
///
///
AppSettings GetAppSettings();
///
/// Setzen der Appsettings
///
///
void SetAppSettings(AppSettings appSettings);
}
}