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; } } }