20 lines
439 B
C#
20 lines
439 B
C#
|
using CandidateReviewDataModels.Models;
|
|||
|
|
|||
|
namespace CandidateReviewContracts.ViewModels
|
|||
|
{
|
|||
|
public class CompanyViewModel : ICompanyModel
|
|||
|
{
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|