Files
ShopSolution-backend/Webshop.Application/Services/Auth/IAuthService.cs
Tizian.Breuch c8635756f1 bugs
2025-07-22 17:26:04 +02:00

14 lines
570 B
C#

// src/Webshop.Application/Services/Auth/IAuthService.cs
using Webshop.Application.DTOs.Auth;
using System.Threading.Tasks; // Sicherstellen, dass für Task vorhanden
using System.Collections.Generic; // Sicherstellen, dass für IList<string> vorhanden
namespace Webshop.Application.Services.Auth
{
public interface IAuthService
{
Task<AuthResponseDto> RegisterUserAsync(RegisterRequestDto request);
Task<AuthResponseDto> LoginUserAsync(LoginRequestDto request);
Task<AuthResponseDto> LoginAdminAsync(LoginRequestDto request);
}
}