login changes

This commit is contained in:
roman
2026-06-10 20:39:52 +02:00
parent 841037013a
commit 43011f0a77
13 changed files with 528 additions and 52 deletions
@@ -0,0 +1,10 @@
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; }
}