|
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; }
|
|
} |