using Knot.Contracts.Auth.Domain; using Microsoft.EntityFrameworkCore; namespace Knot.Contracts.Auth.Application.Abstractions; public interface IAuthDbContext { DbSet Set() where T : class; Task SaveChangesAsync(CancellationToken cancellationToken = default); }