using Shared.Data.Entities; namespace CvSearch.Data.Entities; public sealed class JobSearchTokenEntity : BaseEntity { public string CvDocumentId { get; set; } = string.Empty; public string Email { get; set; } = string.Empty; public string Language { get; set; } = "en"; public DateTime ExpiresAt { get; set; } public bool Used { get; set; } public string Keywords { get; set; } = string.Empty; }