02d2b1e510
Threads the caller's email and client IP through the match pipeline so every Results row records who triggered the match and from where. Closes #45 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
476 B
C#
15 lines
476 B
C#
using Shared.Data.Entities;
|
|
|
|
namespace CvMatcher.Data.Entities;
|
|
|
|
public sealed class CvMatchResultEntity : BaseEntity
|
|
{
|
|
public string CvDocumentId { get; set; } = string.Empty;
|
|
public string JobDocumentId { get; set; } = string.Empty;
|
|
public string Language { get; set; } = "en";
|
|
public string ResultJson { get; set; } = string.Empty;
|
|
public int Score { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? ClientIpAddress { get; set; }
|
|
}
|