You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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; }
|
|
}
|
|
}
|