using System.Collections.Generic; using Infrastructure.Domain; namespace Application.Domain.Entities { public class BookCategory : BaseTreeEntity { public List Books { get; set; } = new List(); } }