26 lines
593 B
C#
26 lines
593 B
C#
|
namespace DepartmentBusinessLogic.HelperModels
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Класс-модель для оценки студента из 1С
|
|||
|
/// </summary>
|
|||
|
public class StudentMarkSyncModel
|
|||
|
{
|
|||
|
public string semester { get; set; }
|
|||
|
|
|||
|
public string disciplineName { get; set; }
|
|||
|
|
|||
|
public string grade { get; set; }
|
|||
|
|
|||
|
public string controlType { get; set; }
|
|||
|
|
|||
|
public string controlTypeDate { get; set; }
|
|||
|
|
|||
|
public string documentType { get; set; }
|
|||
|
|
|||
|
public string gradeType { get; set; }
|
|||
|
|
|||
|
public string billStudyPlan { get; set; }
|
|||
|
|
|||
|
public string teacher { get; set; }
|
|||
|
}
|
|||
|
}
|