2024-11-04 22:26:40 +04:00
|
|
|
|
using CandidateReviewDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace CandidateReviewContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class CompanyViewModel : ICompanyModel
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-11-06 01:27:34 +04:00
|
|
|
|
public string? LogoFilePath { get; set; }
|
2024-11-04 22:26:40 +04:00
|
|
|
|
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? Website { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? Address { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? Contacts { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
2024-11-19 16:45:59 +04:00
|
|
|
|
|
|
|
|
|
public List<VacancyViewModel> Vacancies { get; set; } = new();
|
2024-11-23 21:39:18 +04:00
|
|
|
|
|
|
|
|
|
public List<UserViewModel> Employees { get; set; } = new();
|
2024-11-04 22:26:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|