CourseWork_KPO/CandidateReviewDataModels/Models/IResumeModel.cs

18 lines
448 B
C#
Raw Normal View History

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; }
}
}