feat: 优化首页样式

This commit is contained in:
橙子
2024-08-09 00:39:39 +08:00
parent 29f9cb6b4a
commit 07d82e508e
6 changed files with 138 additions and 62 deletions

View File

@@ -0,0 +1,22 @@
using Yi.Framework.Bbs.Domain.Shared.Enums;
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.BbsUser;
public class MoneyTopUserDto
{
public string UserName { get; set; }
public string? Nice { get; set; }
public decimal Money { get; set; }
public string Order { get; set; }
public string? Icon { get; set; }
public int Level { get; set; }
/// <summary>
/// 用户等级名称
/// </summary>
public string LevelName { get; set; }
/// <summary>
/// 用户限制
/// </summary>
public UserLimitEnum UserLimit { get; set; }
}