using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class MajorPlanResult { /// /// 大类名称 /// public string Name { get; set; } /// /// 专业科目信息 /// public List Majors { get; set; } } /// /// 专业科目信息 /// public class MajorClaim { /// /// 专业名称 /// public string MajorName { get; set; } /// /// 科目要求 /// public string Claim { get; set; } } }