powerfun-new-net/Model/VirtualUserList.cs

14 lines
257 B
C#
Raw Permalink 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 VirtualUserList
{
public List<string> NickNames { get; set; }
public List<string> HeadImages { get; set; }
}
}