mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-11-15 11:37:34 +01:00
10 lines
244 B
C#
10 lines
244 B
C#
using VoidCat.Model;
|
|
|
|
namespace VoidCat.Services.Abstractions;
|
|
|
|
public interface IEmailVerification
|
|
{
|
|
ValueTask<EmailVerificationCode> SendNewCode(PrivateVoidUser user);
|
|
|
|
ValueTask<bool> VerifyCode(PrivateVoidUser user, Guid code);
|
|
} |