|
@@ -0,0 +1,40 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+
|
|
|
+#region <<版本注释>>
|
|
|
+/* ---------------------------
|
|
|
+* 版权所有 (c) 2023 Frank 保留所有权利。
|
|
|
+* CLR版本:4.0.30319.42000
|
|
|
+* 机器名称:FRANK-WIN
|
|
|
+* 命名空间:ZhonTai.Admin.Services.DiTuiAPI.Dto
|
|
|
+* 唯一标识:5c51e57a-57db-4083-94fb-eca4141aa57b
|
|
|
+*
|
|
|
+* 创建者:Frank
|
|
|
+* 电子邮箱: cfrank227@gmail.com
|
|
|
+* 创建时间:2023/5/25 10:16:00
|
|
|
+--------------------------*/
|
|
|
+#endregion <<版本注释>>
|
|
|
+
|
|
|
+namespace ZhonTai.Admin.Services.DiTuiAPI.Dto
|
|
|
+{
|
|
|
+ public class UserInfoOutput
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 头像
|
|
|
+ /// </summary>
|
|
|
+ public string Avatar { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 昵称
|
|
|
+ /// </summary>
|
|
|
+ public string Name { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 手机号
|
|
|
+ /// </summary>
|
|
|
+ public string Phone { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|