16 lines
320 B
C#
16 lines
320 B
C#
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; }
|
|
}
|
|
}
|