mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-29 19:56:45 +08:00
17 lines
348 B
C#
17 lines
348 B
C#
namespace OpenAuth.App.Request
|
|
{
|
|
public class ChangeProfileReq
|
|
{
|
|
public string Account { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户姓名
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// 性别
|
|
/// </summary>
|
|
public int Sex { get; set; }
|
|
}
|
|
}
|