Files
TechHelper/Entities/DTO/Textbook/TextbookResponseDto.cs
SpecialX ac900159ba
Some checks failed
TechAct / explore-gitea-actions (push) Failing after 12s
重构项目结构,移除Assignment相关功能,优化Submission模块
2025-10-09 18:57:28 +08:00

23 lines
611 B
C#

using System;
using System.Collections.Generic;
namespace Entities.DTO
{
/// <summary>
/// 教材响应数据传输对象
/// </summary>
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<string> LessonTitles { get; set; } = new List<string>();
}
}