using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Curriculum
{
public class ThrerModelDetailResult
{
///
/// 课表时间段信息
///
public List curriculumHeadtimeResults { get; set; }
///
/// 特殊周几
///
public List curriculumSpecialWeekResults { get; set; }
///
/// 模板课程信息
///
public List curriculumInfoDetails { get; set; }
}
}