using Microsoft.EntityFrameworkCore; using Domain.Entities.Common; namespace Application.Abstractions.Data { public interface IAppDbContext { DbSet Config { get; set; } Task SaveChangesAsync(CancellationToken cancellationToken = default); } }