2024-11-04 22:26:40 +04:00
|
|
|
|
using CandidateReviewDataModels.Enums;
|
2024-11-04 18:31:27 +04:00
|
|
|
|
|
2024-11-04 22:26:40 +04:00
|
|
|
|
namespace CandidateReviewDataModels.Models
|
2024-11-04 18:31:27 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IResumeModel : IId
|
|
|
|
|
{
|
|
|
|
|
int VacancyId { get; }
|
|
|
|
|
int UserId { get; }
|
|
|
|
|
string Title { get; }
|
|
|
|
|
string Experience { get; }
|
|
|
|
|
string Education { get; }
|
|
|
|
|
string? PhotoFilePath { get; }
|
|
|
|
|
string? Description { get; }
|
|
|
|
|
string Skills { get; }
|
|
|
|
|
ResumeStatusEnum Status { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|