forked from DavidMakarov/StudentEnrollment
15 lines
400 B
C#
15 lines
400 B
C#
using StudentEnrollmentDataModels.Models;
|
|
|
|
namespace StudentEnrollmentContracts.BindingModels
|
|
{
|
|
public class ExamPointsBindingModel : IExamPointsModel
|
|
{
|
|
public int Id { get; set; }
|
|
public int FirstExamPoints { get; set; }
|
|
public int SecondExamPoints { get; set; }
|
|
public int ThirdExamPoints { get; set; }
|
|
public int AddPoints { get; set; } = 0;
|
|
public int Summary { get; set; }
|
|
}
|
|
}
|