27 lines
717 B
C#
27 lines
717 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 课表时间段信息
|
|
/// </summary>
|
|
public List<CurriculumHeadtimeResult> curriculumHeadtimeResults { get; set; }
|
|
/// <summary>
|
|
/// 特殊周几
|
|
/// </summary>
|
|
public List<CurriculumSpecialWeekResult> curriculumSpecialWeekResults { get; set; }
|
|
/// <summary>
|
|
/// 模板课程信息
|
|
/// </summary>
|
|
public List<CurriculumInfoDetailResult> curriculumInfoDetails { get; set; }
|
|
|
|
|
|
}
|
|
}
|