mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-05 18:09:04 +00:00
14 lines
341 B
C#
14 lines
341 B
C#
using Domain.Exceptions;
|
|
using Infrastructure.Repository.Auth;
|
|
|
|
namespace Service.Auth;
|
|
|
|
public record ConfirmationServiceReturn(DateTime ConfirmedAt, Guid UserId);
|
|
|
|
public interface IConfirmationService
|
|
{
|
|
Task<ConfirmationServiceReturn> ConfirmUserAsync(string confirmationToken);
|
|
Task ResendConfirmationEmailAsync(Guid userId);
|
|
|
|
}
|