Files
CourseWork_GradeBook_Backend/GradeBookServer.Application/DTOs/Direction/DirectionReadDto.cs

20 lines
601 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 DirectionReadDto
{
public int ID { get; set; }
public required string Name { get; set; }
public required string FacultyName { get; set; }
public List<DisciplineNameDto> Disciplines { get; set; } = new();
public List<GroupNameDto> Groups { get; set; } = new();
}
}