This commit is contained in:
2026-05-06 15:17:20 +03:00
parent 711810d8c2
commit a10908364b
9 changed files with 50 additions and 31 deletions
@@ -0,0 +1,8 @@
namespace Api.Models.Requests
{
public class CaptchaVerifyRequest
{
public string? Token { get; set; }
}
}
+1
View File
@@ -6,4 +6,5 @@ public sealed class JobMatchRequest
public string? JobUrl { get; set; }
public string? JobDescription { get; set; }
public bool GdprConsent { get; set; }
public string? CaptchaToken { get; set; }
}
+1
View File
@@ -8,5 +8,6 @@ namespace Api.Models.Requests
public IFormFile Cv { get; set; } = default!;
public bool GdprConsent { get; set; }
public string? CaptchaToken { get; set; }
}
}