16 lines
352 B
C#
16 lines
352 B
C#
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<int, IStudentModel> DirectionStudents { get; }
|
|
Dictionary<int, ISubjectModel> DirectionSubjects { get; }
|
|
}
|
|
}
|