Merge branch 'abp' into digital-collectibles

This commit is contained in:
橙子
2025-01-19 15:42:10 +08:00
16 changed files with 182 additions and 56 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; }
}

View File

@@ -0,0 +1,6 @@
namespace Yi.Framework.Bbs.Domain.Shared.Consts;
public class DiscussLableConst
{
public const string DiscussLableCacheKey="DiscussLable:All";
}