using Yi.Framework.Bbs.Domain.Shared.Enums;
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Analyse;
///
/// 用户排行榜
///
public class BaseAnalyseTopUserDto
{
public Guid UserId { get; set; }
public string UserName { get; set; }
public string? Nick { get; set; }
public int Order { get; set; }
public string? Icon { get; set; }
public int Level { get; set; }
///
/// 用户等级名称
///
public string LevelName { get; set; }
///
/// 用户限制
///
public UserLimitEnum UserLimit { get; set; }
}