CSharp-Single-EFCore/Bunny.Dao/Entity/Blog/Post.cs

11 lines
247 B
C#

namespace Bunny.Dao.Entity.Blog;
public class Post
{
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; }
}