forked from powerfun/udpservice
14 lines
257 B
C#
14 lines
257 B
C#
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; }
|
|
}
|
|
}
|