feat: 完善标签分类功能

This commit is contained in:
橙子
2025-01-19 15:17:48 +08:00
parent 811e5c1a8c
commit 2c9d344b76
14 changed files with 172 additions and 50 deletions

View File

@@ -0,0 +1,9 @@
namespace Yi.Framework.Bbs.Domain.Shared.Caches;
public class DiscussLableCacheItem
{
public Guid Id { get; set; }
public string Name { get; set; }
public string? Color { get; set; }
public string? BackgroundColor { get; set; }
}