Files
CourseWork_GradeBook_Backend/GradeBookServer.Application/DTOs/Group/GroupReadDto.cs

18 lines
476 B
C#

using GradeBookServer.Application.DTOs.Student;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GradeBookServer.Application.DTOs.Group
{
public class GroupReadDto
{
public int ID { get; set; }
public required string Name { get; set; }
public required string DirectionName { get; set; }
public List<StudentReadDto> Students { get; set; } = new();
}
}