21 lines
569 B
C#
Raw Normal View History

using StudentEnrollmentDataModels.Models;
namespace StudentEnrollmentContracts.BindingModels
{
public class StudentBindingModel : IStudentModel
{
2024-05-06 20:26:16 +04:00
public int Id { get; set; }
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public string MiddleName { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
2024-05-06 20:26:16 +04:00
public long TIN { get; set; }
public int ExamPointsId { get; set; }
public Dictionary<int, ICourseModel> StudentCourse
{
get;
set;
} = new();
}
}