Files
CourseWork_GradeBook_Backend/GradeBookServer.Application/DTOs/Discipline/DisciplineTableDto.cs

16 lines
351 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GradeBookServer.Application.DTOs.Discipline
{
public class DisciplineTableDto
{
public int ID { get; set; }
public required string Name { get; set; }
public int Hours { get; set; }
}
}