2024-08-30 16:08:08 +08:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using Bunny.Dao.Entity.Base;
|
|
|
|
|
|
|
|
|
|
namespace Bunny.Dao.Entity.System;
|
|
|
|
|
|
|
|
|
|
public class Blog : BaseEntity
|
|
|
|
|
{
|
2024-08-30 20:27:48 +08:00
|
|
|
|
[Required(ErrorMessage = "Url是必填项")] public string Url { get; set; }
|
2024-08-30 16:08:08 +08:00
|
|
|
|
}
|