CourseWork_KPO/CandidateReviewContracts/SearchModels/CompanySearchModel.cs

10 lines
183 B
C#
Raw Permalink Normal View History

2024-11-04 22:26:40 +04:00
namespace CandidateReviewContracts.SearchModels
{
public class CompanySearchModel
{
public string? Name { get; set; }
public int? Id { get; set; }
2024-11-04 22:26:40 +04:00
}
}