Skip to content

Commit

Permalink
add email verification request and responses
Browse files Browse the repository at this point in the history
  • Loading branch information
emrecoskun705 committed Sep 12, 2023
1 parent b1965b7 commit c35ce71
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace Unitagram.Application.Models.Identity.OTP;

public record EmailVerificationRequest
{
public string UserName { get; init; } = string.Empty;
public string EmailToken { get; init; } = string.Empty;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace Unitagram.Application.Models.Identity.OTP;

public record EmailVerificationResponse
{

}

0 comments on commit c35ce71

Please sign in to comment.