CourseWork_KPO/CandidateReviewDataModels/Models/ICompanyModel.cs

12 lines
269 B
C#

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