Files
CourseWork_GradeBook_Backend/GradeBookServer.Application/DTOs/Student/StudentCreateDto.cs

17 lines
361 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GradeBookServer.Application.DTOs.Student
{
public class StudentCreateDto
{
public string FullName { get; set; } = string.Empty;
public int Age { get; set; }
public int GroupID { get; set; }
}
}