Files
Yi.Admin/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Domain/Entities/Forum/DiscussLableAggregateRoot.cs

17 lines
426 B
C#
Raw Normal View History

2023-12-11 09:55:12 +08:00
using SqlSugar;
using Volo.Abp;
using Volo.Abp.Domain.Entities;
2024-01-11 18:51:53 +08:00
namespace Yi.Framework.Bbs.Domain.Entities.Forum
2023-12-11 09:55:12 +08:00
{
2025-01-19 03:31:48 +08:00
[SugarTable("DiscussLable")]
public class DiscussLableAggregateRoot : AggregateRoot<Guid>, ISoftDelete
2023-12-11 09:55:12 +08:00
{
public bool IsDeleted { get; set; }
public string Name { get; set; }
public string? Color { get; set; }
public string? BackgroundColor { get; set; }
}
}