namespace Easy.Admin.Application.Client.Dtos; public class ArticleReportOutput { /// /// 文章数量 /// public int ArticleCount { get; set; } /// /// 标签数量 /// public int TagCount { get; set; } /// /// 栏目数量 /// public int CategoryCount { get; set; } /// /// 用户量 /// public int UserCount { get; set; } /// /// 友链数量 /// public int LinkCount { get; set; } }