using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core.Service; public class CombineRequestDto { /// /// /// public string KeyWord { get; set; } } public class CombinResponseDto { public List universitys { get; set; } public List majors { get; set; } } public class MajorSearchDto { public int Type { get; set; } public string Name { get; set; } public int Id { get; set; } public string Code { get; set; } } public class CombinUniversityDto { public long _id { get; set; } public string name { get; set; } public string provinceName { get; set; } public string cityName { get; set; } public string logo { get; set; } public string collegeCode { get; set; } public List utype { get; set; } }