20 lines
605 B
C#
20 lines
605 B
C#
using GradeBookServer.Application.DTOs.Discipline;
|
|
using GradeBookServer.Application.DTOs.Group;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GradeBookServer.Application.DTOs.Direction
|
|
{
|
|
public class DirectionDetailDto
|
|
{
|
|
public int ID { get; set; }
|
|
public required string Name { get; set; }
|
|
public required string FacultyName { get; set; }
|
|
public List<DisciplineTableDto> Disciplines { get; set; } = new();
|
|
public List<GroupTableDto> Groups { get; set; } = new();
|
|
}
|
|
}
|