NewGaoKaoApi/New_College.Model/ViewModels/Query/HighSchoolRankRequest.cs

27 lines
475 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels
{
public class HighSchoolRankRequest
{
public string Province { get; set; }
public string City { get; set; }
public string Area { get; set; }
public string Name { get; set; }
}
public class HighSchoolRankResponse
{
public int Id { get; set; }
public string SchoolName { get; set; }
}
}