CourseWork_KPO/CandidateReviewDataModels/Models/ICompanyModel.cs

13 lines
307 B
C#

namespace CandidateReviewDataModels.Models
{
public interface ICompanyModel : IId
{
string Name { get; }
string? LogoFilePath { get; }
string? Description { get; }
string? Website { get; }
string? Address { get; }
string? Contacts { get; }
}
}