using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Infrastructure.Domain;
namespace Application.Domain.Entities
{
///
/// 课程分类,通常使用专业分类
///
[Display(Name = "课程分类")]
public class CourseCategory : BaseTreeEntity
{
public List Courses { get; set; } = new List();
public int DisplayOrder { get; set; }
}
}