using System; using System.Collections.Generic; using System.Text; namespace Tsi1.BusinessLayer.Dtos { public class StudentCourseResultCreateDto { public int Result { get; set; } public int StudentId { get; set; } public int CourseId { get; set; } } }