using New_College.Model.ViewModels;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Request
{
public class SelectionServiceRequest : BasePageRequest
{
public string UniversityName { get; set; }
public string MajorName { get; set; }
public string Location { get; set; }
public int Years { get; set; }
}
public class SelectionRequest
{
///
/// 这里
///
public string LocationCode { get; set; }
public List UniversityName { get; set; }
public List MajorName { get; set; }
}
}