using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Infrastructure.Domain; namespace Application.Domain.Entities { [Display(Name = "资源分类")] public class ResourceCategory : BaseTreeEntity { public List Resources { get; set; } = new List(); } }