using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Blog.Core.Model.Models { /// 博客文章 /// /// (); this.tUpdatetime = DateTime.Now; } public int Id { get; set; } public string tLogo { get; set; } public string tName { get; set; } public string tDetail { get; set; } public string tAuthor { get; set; } public string tSectendDetail { get; set; } public bool tIsDelete { get; set; } public int tRead { get; set; } public int tCommend { get; set; } public int tGood { get; set; } public DateTime tCreatetime { get; set; } public DateTime tUpdatetime { get; set; } public virtual ICollection TopicDetail { get; set; } } }