2023-02-18 08:52:17 +01:00
|
|
|
|
using MongoDB.Entities;
|
|
|
|
|
|
2023-02-19 00:43:43 +01:00
|
|
|
|
namespace PrivaPub.Models.User
|
2023-02-18 08:52:17 +01:00
|
|
|
|
{
|
|
|
|
|
public class EmailRecovery : Entity
|
|
|
|
|
{
|
|
|
|
|
public string RootUserId { get; set; }
|
|
|
|
|
public string RecoveryCode { get; set; }
|
|
|
|
|
public string RequestIP { get; set; }
|
|
|
|
|
public DateTime CreationDate { get; set; } = DateTime.UtcNow;
|
|
|
|
|
}
|
|
|
|
|
}
|