namespace Nuuru.Server.DTOs.User { /// /// User statistics /// public class UserStatsDto { public int TotalUploads { get; set; } public int TotalComments { get; set; } public int TotalFavorites { get; set; } public int TotalForumThreads { get; set; } public int TotalForumPosts { get; set; } public DateTime MemberSince { get; set; } public int ReactionScore { get; set; } } }