27 lines
509 B
C#
27 lines
509 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class PlanQuery
|
|
{
|
|
public int UnviersityId { get; set; }
|
|
|
|
public int Year { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string BatchName { get; set; }
|
|
|
|
public string AreaName { get; set; }
|
|
}
|
|
|
|
public class PlanYearQuery
|
|
{
|
|
public int UnviersityId { get; set; }
|
|
|
|
public string AreaName { get; set; }
|
|
}
|
|
}
|