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; } }