DepartmentProject/DepartmentPortal/Department/DepartmentBusinessLogic/HelperModels/StudentInfoForMarkSyncModel.cs

32 lines
781 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace DepartmentBusinessLogic.HelperModels
{
/// <summary>
/// Класс-модель для оценок студента из 1С
/// </summary>
public class StudentInfoForMarkSyncModel
{
public string login { get; set; }
public string iduniv { get; set; }
public string fullName { get; set; }
public string recordBook { get; set; }
public string studyPlan { get; set; }
public string studyPlanFaculty { get; set; }
public string studyPlanUnit { get; set; }
public string studyPlanSpecialtyCode { get; set; }
public string studyPlanSpecialtyName { get; set; }
public string studyPlanSpecialtyProfile { get; set; }
public string studyPlanEducationForm { get; set; }
public StudentMarkSyncModel[] bills { get; set; }
}
}