forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTopicDetail.cs
More file actions
36 lines (33 loc) · 1016 Bytes
/
TopicDetail.cs
File metadata and controls
36 lines (33 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Blog.Core.Model.Models
{
/// <summary>博客文章
///
/// </summary
public class TopicDetail
{
public TopicDetail()
{
this.tdUpdatetime = DateTime.Now;
}
public int Id { get; set; }
public int TopicId { get; set; }
public string tdLogo { get; set; }
public string tdName { get; set; }
public string tdContent { get; set; }
public string tdDetail { get; set; }
public string tdSectendDetail { get; set; }
public bool tdIsDelete { get; set; }
public int tdRead { get; set; }
public int tdCommend { get; set; }
public int tdGood { get; set; }
public DateTime tdCreatetime { get; set; }
public DateTime tdUpdatetime { get; set; }
public int tdTop { get; set; }
public virtual Topic Topic { get; set; }
}
}