using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TaskTrackerDataModels.Models { public interface IDirectionModel : IId { string Name { get; } Dictionary DirectionStudents { get; } Dictionary DirectionSubjects { get; } } }