aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Database/Queues/ValidationEmail.cs
blob: 045776815d75532729db659d353d89442945eb9d (plain) (blame)
1
2
3
4
5
6
7
8
namespace IOL.GreatOffice.Api.Data.Database;

public class ValidationEmail
{
    public Guid Id { get; set; }
    public DateTime EmailSentAt { get; set; }
    public Guid UserId { get; set; }
}