using Project.Domain.Entities; namespace Project.Infrastructure.Interfaces { public interface ITwoFactorAuthRepository { // GET USER BY EMAIL Task GetUserByEmailAsync(string email); // GET SECRET KEY Task GetSecretKeyAsync(string email); // SAVE SECRET KEY Task SaveSecretKeyAsync(string email, string secretKey); } }