29 lines
722 B
C#
29 lines
722 B
C#
using CandidateReviewDataModels.Enums;
|
|
using CandidateReviewDataModels.Models;
|
|
|
|
namespace CandidateReviewContracts.BindingModels
|
|
{
|
|
public class ResumeBindingModel : IResumeModel
|
|
{
|
|
public int VacancyId { get; set; }
|
|
|
|
public int UserId { get; set; }
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
public string Experience { get; set; } = string.Empty;
|
|
|
|
public string Education { get; set; } = string.Empty;
|
|
|
|
public string? PhotoFilePath { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public string Skills { get; set; } = string.Empty;
|
|
|
|
public ResumeStatusEnum Status { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|