13 lines
292 B
C#
13 lines
292 B
C#
|
using Bunny.Dao.Entity.Base;
|
|||
|
|
|||
|
namespace Bunny.Dao.Entity.System;
|
|||
|
|
|||
|
public class Post : BaseEntity
|
|||
|
{
|
|||
|
public int PostId { get; set; }
|
|||
|
public string? Title { get; set; }
|
|||
|
public string? Content { get; set; }
|
|||
|
|
|||
|
public int BlogId { get; set; }
|
|||
|
public Blog? Blog { get; set; }
|
|||
|
}
|