32 lines
781 B
C#
32 lines
781 B
C#
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; }
|
||
}
|
||
} |