This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Models.Requests
|
||||
{
|
||||
public sealed class UploadCvRequest
|
||||
{
|
||||
[Required]
|
||||
public IFormFile Cv { get; set; } = default!;
|
||||
|
||||
public bool GdprConsent { get; set; }
|
||||
public string? CaptchaToken { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user