CourseWork_KPO/CandidateReviewDataModels/Models/ICompanyModel.cs

13 lines
307 B
C#
Raw Normal View History

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; }
string? LogoFilePath { get; }
2024-11-04 18:31:27 +04:00
string? Description { get; }
string? Website { get; }
string? Address { get; }
string? Contacts { get; }
}
}