21 lines
581 B
C#
21 lines
581 B
C#
using CPRNIMS.Infrastructure.Entities.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Account
|
|
{
|
|
[Table("ForgotPassword")]
|
|
public class ForgotPassword : CommonProperties
|
|
{
|
|
public int Id { get; set; }
|
|
public string? ServerURIToken { get; set; }
|
|
public string? Token { get; set; }
|
|
public string? Email { get; set; }
|
|
public bool IsValid { get; set; }
|
|
}
|
|
}
|