using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Curriculum { public class WeekInfoResult { /// /// 开始日期 /// public DateTime StartDate { get; set; } /// /// 结束日期 /// public DateTime EndDate { get; set; } /// /// 周类型(0普通课表-不分单双周,1单周,2双周) /// public int WeekType { get; set; } } }