14 lines
367 B
C#
14 lines
367 B
C#
using Marco.Pms.Model.Utilities;
|
|
|
|
namespace Marco.Pms.Model.Authentication
|
|
{
|
|
public class OTPDetails : TenantRelation
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid UserId { get; set; }
|
|
public string OTP { get; set; } = string.Empty;
|
|
public int ExpriesInSec { get; set; }
|
|
public DateTime TimeStamp { get; set; }
|
|
}
|
|
}
|