forked from powerfun/udpservice
14 lines
246 B
C#
14 lines
246 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OnlineUserPool.Model
|
|
{
|
|
public class RandomRankingUserRequestVM
|
|
{
|
|
public int top { get; set; }
|
|
|
|
public List<string> ids { get; set; }
|
|
}
|
|
}
|