feixian_weifajianguan/OpenAuth.App/BaseApp/UserManager/Request/ChangeProfileReq.cs

21 lines
464 B
C#
Raw Permalink Normal View History

2026-02-03 16:00:02 +08:00
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; }
2026-03-05 16:04:10 +08:00
/// <summary>
/// 用户签名
/// </summary>
public string Signature { get; set; }
2026-02-03 16:00:02 +08:00
}
}