using Project.Application.DTOs.TwoFactorAuth; namespace Project.Application.Interfaces { public interface ITwoFactorAuthService { // GENERATE TWO FACTOR AUTH SETUP public Task GenerateSetupCodeAsync(string userEmail); // VALIDATE OTP public Task ValidateCodeAsync(string userEmail, string code); //// SAVE SECRET KEY //public Task SaveSecretKeyAsync(string userEmail, string userSecretKey); // GET SECRET KEY public Task GetSecretKeyAsync(string userEmail); } }