using Microsoft.EntityFrameworkCore; using TeleWave.Domain.Auth; namespace TeleWave.Application.Common.Interfaces; public interface IAppDbContext { DbSet RefreshTokens { get; } Task SaveChangesAsync(CancellationToken cancellationToken); }