Files
2026-06-10 20:39:52 +02:00

11 lines
297 B
C#

namespace CalendarReminder.Domain.Entities;
public class PasswordResetToken
{
public int Id { get; set; }
public string Email { get; set; } = "";
public string Code { get; set; } = ""; // 8 znakov
public DateTime ExpiresAt { get; set; }
public bool Used { get; set; }
}