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