Files
CourseWork_GradeBook_Backend/GradeBookServer.Application/DTOs/Discipline/DisciplineReadDto.cs

18 lines
495 B
C#

using GradeBookServer.Application.DTOs.Direction;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GradeBookServer.Application.DTOs.Discipline
{
public class DisciplineReadDto
{
public int ID { get; set; }
public required string Name { get; set; }
public int Hours { get; set; }
public List<DirectionNameDto> Directions { get; set; } = new List<DirectionNameDto>();
}
}