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

12 lines
303 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace DepartmentBusinessLogic.HelperModels
{
/// <summary>
/// Класс-модель для списка студентов из 1С
/// </summary>
public class StudentListSyncModel
{
public List<StudentSyncModel> CurrentStudentsList { get; set; }
}
}