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

16 lines
387 B
C#

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