15 lines
334 B
C#
15 lines
334 B
C#
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; }
|
|
}
|
|
}
|