feat: 新增用户信息

This commit is contained in:
橙子
2024-10-20 22:31:39 +08:00
parent 8ca741792a
commit fcaad5c6cc
6 changed files with 38 additions and 13 deletions

View File

@@ -0,0 +1,6 @@
namespace Yi.Framework.DigitalCollectibles.Application.Contracts.Dtos.Collectibles;
public class CollectiblesAccountInfoDto
{
public decimal TotalValue { get; set; }
}

View File

@@ -6,5 +6,5 @@ public class ShelvedGoodsDto
public Guid CollectiblesId { get; set; }
public int Number { get; set; }
public decimal Mmoney { get; set; }
public decimal Money { get; set; }
}