using Volo.Abp.Application.Dtos; namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Level { public class LevelOutputDto : EntityDto { public Guid Id { get; set; } /// /// 当前等级 /// public int CurrentLevel { get; set; } /// /// 最小所需经验值 /// public decimal MinExperience { get; set; } /// /// 等级名称 /// public string Name { get; set; } /// /// 等级称号 /// public string? Nick { get; set; } /// /// 等候logo /// public string? Logo { get; set; } } }