Files
CourseWork_GradeBook_Backend/GradeBookServer.Application/DTOs/Faculty/FacultyCreateDto.cs

15 lines
342 B
C#

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