21 lines
392 B
C#
21 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels.Query
|
|
{
|
|
public class EnrollmentPlanRequest
|
|
{
|
|
public string UniversityName { get; set; }
|
|
|
|
public string MajorName { get; set; }
|
|
|
|
public int AreaId { get; set; }
|
|
|
|
public int Years { get; set; }
|
|
|
|
public int PlanId { get; set; }
|
|
|
|
}
|
|
}
|