Skip to content

Commit

Permalink
add otp confirmation
Browse files Browse the repository at this point in the history
  • Loading branch information
emrecoskun705 committed Sep 11, 2023
1 parent aa86552 commit 4dec50e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Unitagram.Domain/OtpConfirmation.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
using Unitagram.Domain.Common;

namespace Unitagram.Domain;

public class OtpConfirmation
public class OtpConfirmation : BaseEntity
{
public Guid UserId { get; set; }
public string Name { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
public int RetryCount { get; set; }
public DateTime? RetryDateTime { get; set; }
public DateTimeOffset? RetryDateTimeUtc { get; set; }
}

0 comments on commit 4dec50e

Please sign in to comment.