18 lines
347 B
C#
18 lines
347 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
public class D_HighSchoolRank : EntityModel
|
|
{
|
|
public string SchoolName { get; set; }
|
|
public string City { get; set; }
|
|
public string Area { get; set; }
|
|
public string Province { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|