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

13 lines
292 B
C#
Raw Normal View History

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