namespace Blog.Core.Model.ViewModels { /// /// 留言排名展示类 /// public class TopgbViewModels { /// 博客ID /// /// public int? blogId { get; set; } /// /// 评论数量 /// public int counts { get; set; } /// 博客标题 /// /// public string btitle { get; set; } } }