20 lines
402 B
C#
20 lines
402 B
C#
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; }
|
|
|
|
}
|
|
}
|