27 lines
523 B
C#
27 lines
523 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TaskTrackerDataModels.Models;
|
|
|
|
namespace TaskTrackerContracts.ViewModels
|
|
{
|
|
public class DirectionViewModel : IDirectionModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public Dictionary<int, IStudentModel> DirectionStudents
|
|
{
|
|
get;
|
|
set;
|
|
} = new();
|
|
|
|
public Dictionary<int, ISubjectModel> DirectionSubjects
|
|
{
|
|
get;
|
|
set;
|
|
} = new();
|
|
}
|
|
}
|