473c36d65f
Captures the IP when the user submits the CV match form and stores it on the token, giving a full audit trail: token holds the match-site IP, session holds the email link-click IP. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
513 B
C#
13 lines
513 B
C#
namespace CvMatcher.Models.Requests;
|
|
|
|
public sealed class CreateJobSearchTokenRequest
|
|
{
|
|
public string CvDocumentId { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Language { get; set; } = "en";
|
|
public List<string> Keywords { get; set; } = [];
|
|
public string? Location { get; set; }
|
|
/// <summary>Client IP address forwarded by the api layer at CV match time. Null when not available.</summary>
|
|
public string? ClientIpAddress { get; set; }
|
|
}
|