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

15 lines
302 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 GroupTableDto
{
public int ID { get; set; }
public required string Name { get; set; }
}
}