using System.Threading; using System.Threading.Tasks; using FinlyticCore.Entities.Settings; using Microsoft.EntityFrameworkCore; namespace FinlyticCore.Database; /// /// Einheitliches Interface für DbContexts, die dynamische Einstellungen verwalten. /// public interface ISettingsDbContext { DbSet DynamicSettings { get; } Task SaveChangesAsync(CancellationToken cancellationToken = default); }