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

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