CourseWork_KPO/CandidateReviewContracts/SearchModels/VacancySearchModel.cs

16 lines
320 B
C#
Raw Normal View History

2024-11-04 22:26:40 +04:00
namespace CandidateReviewContracts.SearchModels
{
public class VacancySearchModel
{
public int? CompanyId { get; set; }
public string? JobTitle { get; set; }
public string? Salary { get; set; }
public string? Tags { get; set; }
public int? Id { get; set; }
}
}