using System; using System.Collections.Generic; namespace Entities.DTO { /// /// 教材响应数据传输对象 /// public class TextbookResponseDto { public Guid Id { get; set; } public string Title { get; set; } public string Grade { get; set; } public string Publisher { get; set; } public string SubjectArea { get; set; } public string Description { get; set; } // 导航属性 public int LessonCount { get; set; } public List LessonTitles { get; set; } = new List(); } }