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

12 lines
327 B
C#
Raw Permalink Normal View History

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