2024-11-23 21:39:18 +04:00
|
|
|
|
using CandidateReviewDataModels.Models;
|
2024-11-04 22:26:40 +04:00
|
|
|
|
|
|
|
|
|
namespace CandidateReviewContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class CompanyBindingModel : ICompanyModel
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-11-23 21:39:18 +04:00
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|