31 lines
765 B
C#
31 lines
765 B
C#
|
using CandidateReviewDataModels.Enums;
|
|||
|
using CandidateReviewDataModels.Models;
|
|||
|
|
|||
|
namespace CandidateReviewContracts.ViewModels
|
|||
|
{
|
|||
|
public class VacancyViewModel : IVacancyModel
|
|||
|
{
|
|||
|
public int CompanyId { get; set; }
|
|||
|
|
|||
|
public string JobTitle { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Requirements { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Responsibilities { get; set; } = string.Empty;
|
|||
|
|
|||
|
public JobTypeEnum JobType { get; set; }
|
|||
|
|
|||
|
public string? Salary { get; set; }
|
|||
|
|
|||
|
public string? Description { get; set; }
|
|||
|
|
|||
|
public VacancyStatusEnum Status { get; set; }
|
|||
|
|
|||
|
public DateTime CreatedAt { get; set; }
|
|||
|
|
|||
|
public string? Tags { get; set; }
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|