18 lines
394 B
C#
18 lines
394 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 StudentReadDto
|
|
{
|
|
public int ID { get; set; }
|
|
public required string FullName { get; set; }
|
|
public int Age { get; set; }
|
|
public string? GroupName { get; set; }
|
|
}
|
|
|
|
}
|