feat: 完成积分、价值排行榜

This commit is contained in:
chenchun
2024-11-13 19:01:23 +08:00
committed by 橙子
parent f9217dc066
commit 43c4c03832
19 changed files with 457 additions and 29 deletions

View File

@@ -0,0 +1,7 @@
namespace Yi.Framework.DigitalCollectibles.Domain.Shared.Caches;
public class CollectiblesValueCacheItem
{
public Guid UserId { get; set; }
public decimal Value { get; set; }
}