2024-11-04 22:26:40 +04:00
|
|
|
|
namespace CandidateReviewDataModels.Models
|
2024-11-04 18:31:27 +04:00
|
|
|
|
{
|
|
|
|
|
public interface ICompanyModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
2024-11-06 01:27:34 +04:00
|
|
|
|
string? LogoFilePath { get; }
|
2024-11-04 18:31:27 +04:00
|
|
|
|
string? Description { get; }
|
|
|
|
|
string? Website { get; }
|
|
|
|
|
string? Address { get; }
|
|
|
|
|
string? Contacts { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|