18 lines
438 B
C#
18 lines
438 B
C#
|
using CourseWorkDataModels.Enums;
|
|||
|
|
|||
|
namespace CourseWorkDataModels.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; }
|
|||
|
}
|
|||
|
}
|