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

16 lines
371 B
C#

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