2024-05-13 14:53:28 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace TaskTrackerDataModels.Models
|
|
|
|
|
{
|
2024-05-13 16:21:24 +04:00
|
|
|
|
public interface IDirectionModel : IId
|
2024-05-13 14:53:28 +04:00
|
|
|
|
{
|
2024-05-14 20:26:30 +04:00
|
|
|
|
string Name { get; }
|
|
|
|
|
Dictionary<int, IStudentModel> DirectionStudents { get; }
|
|
|
|
|
Dictionary<int, ISubjectModel> DirectionSubjects { get; }
|
2024-05-13 14:53:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|