using System; namespace Tiobon.Core.Model.ViewModels { /// /// 博客信息展示类 /// public class TiobonViewModels { /// /// /// public long bID { get; set; } /// 创建人 /// /// public string bsubmitter { get; set; } /// 博客标题 /// /// public string btitle { get; set; } /// 摘要 /// /// public string digest { get; set; } /// /// 上一篇 /// public string previous { get; set; } /// /// 上一篇id /// public long previousID { get; set; } /// /// 下一篇 /// public string next { get; set; } /// /// 下一篇id /// public long nextID { get; set; } /// 类别 /// /// public string bcategory { get; set; } /// 内容 /// /// public string bcontent { get; set; } /// /// 访问量 /// public int btraffic { get; set; } /// /// 评论数量 /// public int bcommentNum { get; set; } /// 修改时间 /// /// public DateTime bUpdateTime { get; set; } /// /// 创建时间 /// public System.DateTime bCreateTime { get; set; } /// 备注 /// /// public string bRemark { get; set; } } }