ChengDa_English/SGGL/Model/APIItem/UserListItem.cs

20 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class UserListItem
{
/// <summary>
/// 用户信息集合
/// </summary>
public List<Model.UserItem> list
{
get;
set;
}
}
}