using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Curriculum
{
public class CurriculumTimeTableMobilResult
{
///
/// 最大节数
///
public int MaxSectionCount { get; set; }
///
/// 日期列表
///
public List Dates { get; set; }
///
/// 具体课表信息
///
public List TimetableList { get; set; }
}
}