ChatRoomForGpt/ARW-net/ARW.Model/System/Dto/SysUserDto.cs
2023-04-04 18:15:13 +08:00

22 lines
567 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
using ARW.Model.System;
namespace ARW.Model.System.Dto
{
public class SysUserDto
{
public long UserId { get; set; }
public string UserName { get; set; }
public string NickName { get; set; }
public string Email { get; set; }
public string Remark { get; set; }
public string Phonenumber { get; set; }
/// <summary>
/// '用户性别0男 1女 2未知',
/// </summary>
public int Sex { get; set; }
}
}