13 lines
366 B
C#

namespace Marco.Pms.Model.Authentication
{
public class OTPDetails
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public string OTP { get; set; } = string.Empty;
public int ExpriesInSec { get; set; }
public bool IsUsed { get; set; } = false;
public DateTime TimeStamp { get; set; }
}
}