using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Infrastructure.Domain; namespace Application.Domain.Entities { [Display(Name = "章节")] public class Section : BaseTreeEntity
{ [Display(Name = "教材")] public Guid BookId { get; set; } public Book Book { get; set; } public List Resources { get; set; } = new List(); public List Questions { get; set; } = new List(); } }