18 lines
448 B
C#
18 lines
448 B
C#
using CandidateReviewDataModels.Enums;
|
|
|
|
namespace CandidateReviewDataModels.Models
|
|
{
|
|
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; }
|
|
}
|
|
}
|