15 lines
343 B
C#
Raw Normal View History

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
{
Dictionary<int, (IStudentModel, int)> DirectionStudents { get; }
Dictionary<int, (ISubjectModel, int)> DirectionSubjects { get; }
}
}