20220325 新增用户接口

This commit is contained in:
2022-03-25 10:12:47 +08:00
parent 9dc8a7e05d
commit 844e9f1488
8 changed files with 240 additions and 6 deletions
+19
View File
@@ -0,0 +1,19 @@
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;
}
}
}