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 StudentIds { get; set; } = new(); } }