namespace CvMatcher.Models.Requests;
///
/// Request body sent by api when activating a one-time job-search link.
/// Carries the caller's IP address so it can be persisted on the session for auditing.
///
public sealed class StartJobSearchRequest
{
/// Client IP address forwarded by the api layer. Null when not available.
public string? ClientIpAddress { get; set; }
}