2024-04-18 19:09:47 +04:00
|
|
|
|
namespace UniversityDataModels.Models
|
2024-04-15 20:26:19 +04:00
|
|
|
|
{
|
2024-04-17 20:29:15 +04:00
|
|
|
|
public interface IDisciplineModel : IId
|
2024-04-15 20:26:19 +04:00
|
|
|
|
{
|
|
|
|
|
int TeacherId { get; }
|
2024-04-19 19:30:16 +04:00
|
|
|
|
string Name { get; }
|
|
|
|
|
string Description { get; }
|
2024-04-15 20:26:19 +04:00
|
|
|
|
}
|
|
|
|
|
}
|