using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace New_College.Model { public class SelectionResponseDto { public string MajorName { get; set; } public List selects { get; set; } } public class SelectionMajorDto { public string MajorName { get; set; } } public class SelectResponseDto { public string UniversityName { get; set; } public string Selection { get; set; } } }