You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/StudyCenter/Application/Domain/Entities/CourseCategory.cs

16 lines
467 B

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