12 lines
264 B
C#
12 lines
264 B
C#
|
namespace CourseWorkDataModels.Models
|
|||
|
{
|
|||
|
public interface ICompanyModel : IId
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
string? Description { get; }
|
|||
|
string? Website { get; }
|
|||
|
string? Address { get; }
|
|||
|
string? Contacts { get; }
|
|||
|
}
|
|||
|
}
|