19 lines
395 B
C#
19 lines
395 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_WeChatApplet.Commons.Dto.ClientSide
|
|
{
|
|
/// <summary>
|
|
/// 项目排行
|
|
/// </summary>
|
|
public class RankingDto
|
|
{
|
|
public int UserId { get; set; }
|
|
public string UserName { get; set; }
|
|
public int Value { get; set; }
|
|
}
|
|
}
|