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

11 lines
284 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
using Bunny.Dao.Entity.Base;
namespace Bunny.Dao.Entity.System;
public class Post : BaseEntity
{
[MaxLength(600)] public string? Title { get; init; }
public string? Content { get; init; }
public Blog? Blog { get; init; }
}