using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels.Result { public class MyHistoryResponse { /// /// 主键id /// public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 排名 /// public int? Rank { get; set; } /// /// 是否985 /// public bool? Nhef { get; set; } /// /// 是否211 /// public bool? Sff { get; set; } /// /// 是否双一流 /// public bool? Syl { get; set; } /// /// 学校logo /// public string Logo { get; set; } /// /// 省市区名称 /// public string AreaName { get; set; } /// /// 办学性质 /// public int Nature { get; set; } } }