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