using System.Threading; using System.Threading.Tasks; using Knot.Modules.Auth.Domain; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; namespace Knot.Modules.Auth.Application.Abstractions; public interface IAuthDbContext { DbSet Users { get; } Task SaveChangesAsync(CancellationToken cancellationToken); }