powerfun-new-net/Model/RandomRankingUserRequestVM.cs

14 lines
246 B
C#
Raw Normal View History

2020-09-17 10:23:26 +08:00
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; }
}
}